Skip to content

Commit

Permalink
docker: github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hotlong committed Oct 7, 2023
1 parent 6e327da commit 7935024
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/release-docker-enterprise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,21 @@ jobs:
replace: ${{env.STEEDOS_VERSION}}
regex: false

- name: Build and push docker
- name: Build and push docker linux/amd64
uses: docker/build-push-action@v3
with:
context: ./deploy/enterprise
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}


- name: Build and push docker linux/arm64
uses: docker/build-push-action@v3
with:
context: ./deploy/enterprise
platforms: linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 7935024

Please sign in to comment.