Skip to content

Commit

Permalink
feat: merge
Browse files Browse the repository at this point in the history
  • Loading branch information
cool-firer committed Oct 24, 2024
2 parents dbd5bc6 + 372a3ff commit 447be22
Show file tree
Hide file tree
Showing 23 changed files with 901 additions and 209 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/proxy-docker-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,17 @@ jobs:
sh .github/workflows/scripts/proxyVersion.sh
- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
push: true
platforms: amd64
cache-from: type=gha
cache-to: type=gha,mode=max
file: ./apps/indexer-proxy/proxy/Dockerfile
tags: subquerynetwork/indexer-proxy-dev:v${{ steps.fetch-version.outputs.VERSION }},subquerynetwork/indexer-proxy-dev:latest
build-args: RELEASE_VERSION=${{ steps.fetch-version.outputs.VERSION }}
build-args: |
RELEASE_VERSION=${{ steps.fetch-version.outputs.VERSION }}
SECRETS_SENTRY_DSN=${{ secrets.SENTRY_DSN }}
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
4 changes: 3 additions & 1 deletion .github/workflows/proxy-docker-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
sh .github/workflows/scripts/proxyVersion.sh
- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
push: true
platforms: amd64,arm64
Expand All @@ -40,6 +40,8 @@ jobs:
file: ./apps/indexer-proxy/proxy/Dockerfile
tags: subquerynetwork/indexer-proxy:v${{ steps.fetch-version.outputs.VERSION }}
build-args: RELEASE_VERSION=${{ steps.fetch-version.outputs.VERSION }}
secrets: |
SECRETS_SENTRY_DSN=${{ secrets.SENTRY_DSN }}
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
Loading

0 comments on commit 447be22

Please sign in to comment.