Skip to content

Commit

Permalink
✨ feat(gradle-build.yml): Update Docker build actions to explicitly…
Browse files Browse the repository at this point in the history
… specify supported platforms (linux/amd64, linux/arm64) in GitHub Actions workflow.
  • Loading branch information
vnobo committed Dec 16, 2024
1 parent c0ea338 commit a8feffb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gradle-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
- name: Build and Push Platform
uses: docker/build-push-action@v6
with:
platforms: ${{ matrix.platform }}
platforms: linux/amd64,linux/arm64
context: ./boot/platform
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
Expand All @@ -107,7 +107,7 @@ jobs:
- name: Build and Push Oauth2
uses: docker/build-push-action@v6
with:
platforms: ${{ matrix.platform }}
platforms: linux/amd64,linux/arm64
context: ./boot/oauth2
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.oauth2.outputs.tags }}
Expand Down

0 comments on commit a8feffb

Please sign in to comment.