Skip to content

Commit

Permalink
Fix release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubno committed Sep 18, 2023
1 parent 796da97 commit 307bb48
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
name: Env Instance Task Driver
needs: changes
if: |
needs.changes.outputs.version == 'true' &&
needs.changes.outputs.version == 'true'
uses: ./.github/workflows/env-instance-task-driver.yml
secrets:
workload_identity_provider: ${{ secrets.WORKLOAD_IDENTITY_PROVIDER }}
Expand All @@ -82,7 +82,7 @@ jobs:
name: Env Build Task Driver
needs: changes
if: |
needs.changes.outputs.version == 'true' &&
needs.changes.outputs.version == 'true'
uses: ./.github/workflows/env-build-task-driver.yml
secrets:
workload_identity_provider: ${{ secrets.WORKLOAD_IDENTITY_PROVIDER }}
Expand Down Expand Up @@ -148,6 +148,7 @@ jobs:
needs: [changes, terraform]
if: |
always() &&
needs.terraform.result == 'success'
runs-on: ubuntu-20.04
steps:
- name: Create release
Expand Down

0 comments on commit 307bb48

Please sign in to comment.