Skip to content

Commit 0f3b4a2

Browse files
committed
ci
1 parent abb91a5 commit 0f3b4a2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
changes:
1717
runs-on: ubuntu-latest
1818
outputs:
19-
webknossos: ${{ steps.filter.outputs.webknossos }} || github.ref == 'refs/heads/master'
20-
wkcuber: ${{ steps.filter.outputs.wkcuber }} || github.ref == 'refs/heads/master'
21-
cluster_tools: ${{ steps.filter.outputs.cluster_tools }} || github.ref == 'refs/heads/master'
19+
webknossos: ${{ steps.filter.outputs.webknossos || github.ref == 'refs/heads/master' }}
20+
wkcuber: ${{ steps.filter.outputs.wkcuber || github.ref == 'refs/heads/master' }}
21+
cluster_tools: ${{ steps.filter.outputs.cluster_tools || github.ref == 'refs/heads/master' }}
2222
steps:
2323
- uses: actions/checkout@v2
2424
- uses: dorny/paths-filter@v2
@@ -34,7 +34,7 @@ jobs:
3434
3535
cluster_tools:
3636
needs: changes
37-
# if: ${{ needs.changes.outputs.cluster_tools == 'true' }}
37+
if: ${{ needs.changes.outputs.cluster_tools == 'true' }}
3838
runs-on: ubuntu-latest
3939
timeout-minutes: 30
4040
strategy:

0 commit comments

Comments
 (0)