Skip to content

Commit 5aec25c

Browse files
committed
Fix syntax error
The error was in metaborg/actions instead
1 parent 5e1ce77 commit 5aec25c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
gradle-command: |
1919
gradle build
20-
# needs-docker: true
20+
needs-docker: true
2121
# Due to a bug, we cannot set the timeout here: https://github.com/orgs/community/discussions/50481
2222
# Timeout in 10 minutes, as Stratego initialization can sometimes deadlock
2323
# timeout-minutes: 10
@@ -29,7 +29,7 @@ jobs:
2929
gradle publish -Pgitonium.isSnapshot=true
3030
gradle-version-command: |
3131
gradle -q :printVersion -Pgitonium.isSnapshot=true
32-
# needs-docker: true
32+
needs-docker: true
3333
if: "github.event_name == 'push' && github.ref == 'refs/heads/master'"
3434
needs: [build]
3535
secrets:
@@ -43,7 +43,7 @@ jobs:
4343
gradle publish
4444
gradle-version-command: |
4545
gradle -q :printVersion
46-
# needs-docker: true
46+
needs-docker: true
4747
if: "github.event_name == 'push' && startsWith(github.ref, 'refs/tags/devenv-release/')"
4848
needs: [build]
4949
secrets:

0 commit comments

Comments
 (0)