Skip to content

Commit

Permalink
Allow ECR sync to happen on a release
Browse files Browse the repository at this point in the history
  • Loading branch information
robbibt authored Feb 28, 2024
1 parent b3e6631 commit 8293976
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dea-intertidal-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ jobs:
needs: [test]
runs-on: ubuntu-latest

# Only run on a push to the main branch
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
# Only run on a push to the main branch OR a release
if: (github.event_name == 'push' && github.ref == 'refs/heads/main') || (github.event_name == 'release')

steps:
- name: Checkout code
Expand Down

0 comments on commit 8293976

Please sign in to comment.