Skip to content

Commit

Permalink
allow workflow_dispatch (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
james-otten authored Feb 9, 2025
1 parent da4e867 commit 5f12880
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
environment: dev_jon
secrets: inherit
if: github.ref == 'refs/heads/master' && github.event_name == 'push'
if: github.ref == 'refs/heads/master'

deploy_sn10_prod:
name: Deploy to sn10 prod
Expand All @@ -26,7 +26,7 @@ jobs:
with:
environment: prod_sn10
secrets: inherit
if: github.ref == 'refs/heads/master' && github.event_name == 'push'
if: github.ref == 'refs/heads/master'

deploy_sn3_prod:
name: Deploy to sn3 prod
Expand All @@ -35,4 +35,4 @@ jobs:
with:
environment: prod_sn3
secrets: inherit
if: github.ref == 'refs/heads/master' && github.event_name == 'push'
if: github.ref == 'refs/heads/master'

0 comments on commit 5f12880

Please sign in to comment.