Skip to content

Commit

Permalink
Temporarily turn off running only on changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubno committed Sep 15, 2023
1 parent 2be58c3 commit 952de1d
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,6 @@ jobs:
firecracker-task-driver:
name: Devbook Firecracker Task Driver
needs: changes
# if: |
# needs.changes.outputs.version == 'true' &&
# needs.changes.outputs.firecracker-task-driver == 'true'
uses: ./.github/workflows/firecracker-task-driver.yml
secrets:
workload_identity_provider: ${{ secrets.WORKLOAD_IDENTITY_PROVIDER }}
Expand All @@ -84,7 +81,6 @@ jobs:
needs: [changes, firecracker-task-driver]
if: |
always() &&
# needs.changes.outputs.version == 'true' &&
(needs.changes.outputs.cluster-disk-image == 'true' || needs.firecracker-task-driver.result == 'success')
uses: ./.github/workflows/cluster-disk-image.yml
secrets:
Expand All @@ -94,9 +90,6 @@ jobs:
envd:
name: Devbook Daemon
needs: changes
# if: |
# needs.changes.outputs.version == 'true' &&
# needs.changes.outputs.envd == 'true'
uses: ./.github/workflows/envd.yml
secrets:
workload_identity_provider: ${{ secrets.WORKLOAD_IDENTITY_PROVIDER }}
Expand All @@ -106,9 +99,6 @@ jobs:
fc-env:
name: FC env (pipeline scripts)
needs: changes
# if: |
# needs.changes.outputs.version == 'true' &&
# needs.changes.outputs.fc-env == 'true'
uses: ./.github/workflows/fc-env.yml
secrets:
workload_identity_provider: ${{ secrets.WORKLOAD_IDENTITY_PROVIDER }}
Expand All @@ -117,9 +107,6 @@ jobs:
api-image:
name: API image
needs: changes
# if: |
# needs.changes.outputs.version == 'true' &&
# needs.changes.outputs.api-image == 'true'
uses: ./.github/workflows/api-image.yml
secrets:
workload_identity_provider: ${{ secrets.WORKLOAD_IDENTITY_PROVIDER }}
Expand All @@ -139,7 +126,6 @@ jobs:
]
if: |
always() &&
# needs.changes.outputs.version == 'true' &&
needs.changes.result == 'success' &&
(needs.cluster-disk-image.result == 'success' || needs.cluster-disk-image.result == 'skipped') &&
(needs.fc-env.result == 'success' || needs.fc-env.result == 'skipped') &&
Expand All @@ -158,7 +144,6 @@ jobs:
if: |
always() &&
needs.terraform.result == 'success' &&
# needs.changes.outputs.version == 'true'
runs-on: ubuntu-20.04
steps:
- name: Create release
Expand Down

0 comments on commit 952de1d

Please sign in to comment.