-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1473 from Logflare/staging
Release v1.1.0
- Loading branch information
Showing
97 changed files
with
1,924 additions
and
1,099 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Docker CI | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [staging, master] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
publish: | ||
name: Build and publish amd64 and arm64 image | ||
runs-on: ubuntu-latest | ||
env: | ||
PUSH_TO_DOCKER: ${{github.ref == 'refs/heads/staging'}} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- id: version | ||
name: Get version | ||
run: | | ||
echo "LOGFLARE_VERSION=$(cat VERSION)" >> $GITHUB_ENV | ||
echo "LOGFLARE_VERSION=$(cat VERSION)" >> $GITHUB_OUTPUT | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
# build for master | ||
- name: Build and push latest, versioned | ||
if: ${{github.ref == 'refs/heads/master'}} | ||
uses: docker/build-push-action@v3 | ||
with: | ||
push: true | ||
tags: supabase/logflare:latest, supabase/${{ env.LOGFLARE_VERSION}} | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
platforms: linux/arm64,linux/amd64 | ||
# build for staging | ||
- name: Build and push staging build | ||
if: ${{github.ref == 'refs/heads/staging'}} | ||
uses: docker/build-push-action@v3 | ||
with: | ||
push: true | ||
tags: supabase/logflare:staging | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
platforms: linux/arm64,linux/amd64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
elixir 1.12.3-otp-24 | ||
erlang 24.3.4 | ||
elixir 1.14.4-otp-25 | ||
nodejs 18.13.0 | ||
rust 1.64.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.0.2 | ||
1.1.0 |
Oops, something went wrong.