Skip to content

Commit 8e72ab5

Browse files
authored
fix(atlantis-image): push on release tag (#3432)
1 parent f5c7814 commit 8e72ab5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/atlantis-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
# Set docker repo to either the fork or the main repo where the branch exists
3333
DOCKER_REPO: ghcr.io/${{ github.repository }}
3434
# Push if not a pull request and references the main branch
35-
PUSH: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/main' }}
35+
PUSH: ${{ github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')) }}
3636

3737
steps:
3838
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)