Skip to content

Commit

Permalink
Fix deploy event name
Browse files Browse the repository at this point in the history
  • Loading branch information
beingmattlevy committed May 5, 2024
1 parent b4bfe00 commit 25d953d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
name: TicketBooth checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event_name == "workflow_dispatch" && 'main' || github.ref }}
ref: ${{ github.event_name == 'workflow_dispatch' && 'main' || github.ref }}
fetch-depth: 1

- id: gcpAuth
Expand All @@ -60,10 +60,10 @@ jobs:
chart: deployment/chart
token: ${{ github.token }}
values: |
image.tag: ${{ github.event_name == "workflow_dispatch" && inputs.containerTag || github.ref_name }}
image.tag: ${{ github.event_name == 'workflow_dispatch' && inputs.containerTag || github.ref_name }}
value-files: >-
[
"deployment/env/base.yaml",
"deployment/${{ environment }}.yaml"
]
atomic: ${{ github.event_name == "workflow_dispatch" && false || true }}
atomic: ${{ github.event_name == 'workflow_dispatch' && false || true }}

0 comments on commit 25d953d

Please sign in to comment.