Skip to content

Commit

Permalink
Run everything
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubno committed Sep 18, 2023
1 parent 307bb48 commit aec7d23
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 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.result == 'success'
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.result == 'success'
uses: ./.github/workflows/env-build-task-driver.yml
secrets:
workload_identity_provider: ${{ secrets.WORKLOAD_IDENTITY_PROVIDER }}
Expand All @@ -93,7 +93,6 @@ jobs:
needs: [changes, env-instance-task-driver, env-build-task-driver]
if: |
always() &&
needs.changes.outputs.version == 'true' &&
(needs.changes.outputs.cluster-disk-image == 'true' || needs.env-instance-task-driver.result == 'success' || needs.env-build-task-driver.result == 'success')
uses: ./.github/workflows/cluster-disk-image.yml
secrets:
Expand Down

0 comments on commit aec7d23

Please sign in to comment.