Try to fix syntax error #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | ||
# !! THIS FILE WAS GENERATED USING repoman !! | ||
# Modify `repo.yaml` instead and use `repoman` to update this file | ||
# See: https://github.com/metaborg/metaborg-gradle/ | ||
name: 'Build & Publish' | ||
on: # yamllint disable-line rule:truthy | ||
push: | ||
pull_request: | ||
branches: | ||
- master | ||
jobs: | ||
build: | ||
uses: metaborg/actions/.github/workflows/gradle-build-matrix.yaml@main | ||
Check failure on line 16 in .github/workflows/build.yaml GitHub Actions / Build & PublishInvalid workflow file
|
||
with: | ||
gradle-command: | | ||
gradle build | ||
# needs-docker: true | ||
# Due to a bug, we cannot set the timeout here: https://github.com/orgs/community/discussions/50481 | ||
# Timeout in 10 minutes, as Stratego initialization can sometimes deadlock | ||
# timeout-minutes: 10 | ||
# Publish snapshots | ||
publish-snapshot: | ||
uses: metaborg/actions/.github/workflows/gradle-publish.yaml@main | ||
with: | ||
gradle-command: | | ||
gradle publish -Pgitonium.isSnapshot=true | ||
gradle-version-command: | | ||
gradle -q :printVersion -Pgitonium.isSnapshot=true | ||
needs-docker: true | ||
if: "github.event_name == 'push' && github.ref == 'refs/heads/master'" | ||
needs: [build] | ||
secrets: | ||
METABORG_ARTIFACTS_USERNAME: ${{ secrets.METABORG_ARTIFACTS_USERNAME }} | ||
METABORG_ARTIFACTS_PASSWORD: ${{ secrets.METABORG_ARTIFACTS_PASSWORD }} | ||
# Publish releases | ||
publish-release: | ||
uses: metaborg/actions/.github/workflows/gradle-publish.yaml@main | ||
with: | ||
gradle-command: | | ||
gradle publish | ||
gradle-version-command: | | ||
gradle -q :printVersion | ||
needs-docker: true | ||
if: "github.event_name == 'push' && startsWith(github.ref, 'refs/tags/devenv-release/')" | ||
needs: [build] | ||
secrets: | ||
METABORG_ARTIFACTS_USERNAME: ${{ secrets.METABORG_ARTIFACTS_USERNAME }} | ||
METABORG_ARTIFACTS_PASSWORD: ${{ secrets.METABORG_ARTIFACTS_PASSWORD }} |