Skip to content

Commit

Permalink
[IT-3523] Run the deploy pipeline on test branches
Browse files Browse the repository at this point in the history
Upload test artifacts for branches that start with `test/` to streamline
testing AMI changes.
  • Loading branch information
ConsoleCatzirl committed Dec 3, 2024
1 parent a9f7e0d commit 2324891
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
deploy:
name: Upload to Amazon S3
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v') }}
if: ${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/test/') || startsWith(github.ref, 'refs/tags/v') }}
needs: [ "validate" ]
permissions:
id-token: write
Expand Down

0 comments on commit 2324891

Please sign in to comment.