Skip to content

Commit

Permalink
Refined Docker build trigger branch
Browse files Browse the repository at this point in the history
The Docker build and push workflow has been adjusted to only trigger on pushes to the 'release' branch, removing the previous behavior of triggering on both 'main' and 'release' branches. This change streamlines our deployment process by ensuring Docker images are built only when necessary.
  • Loading branch information
leokwsw committed Apr 5, 2024
1 parent c3e4720 commit cd33fef
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/docker-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ name: Docker build and push
on:
push:
branches:
- main
- release
- 'release'

env:
PLATFORMS: ${{ vars.PLATFORMS || 'linux/amd64,linux/arm64' }}
Expand Down

0 comments on commit cd33fef

Please sign in to comment.