fix:the CI journey never stops #10
Workflow file for this run
This file contains hidden or 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
| name: Include ontology assets in the release | ||
| on: | ||
| push: | ||
| tags: | ||
| - "v*" | ||
| jobs: | ||
| build: | ||
| uses: ./.github/workflows/build.yml | ||
| with: | ||
| is_release: true | ||
| shacl: | ||
| uses: ./.github/workflows/checks.yml | ||
| with: | ||
| is_release: true | ||
| make_release: | ||
| runs-on: ubuntu-latest | ||
| needs: | ||
| build | ||
|
Check failure on line 21 in .github/workflows/release.yml
|
||
| shacl | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: get schema assets | ||
| uses: actions/download-artifact@v4.1.8 | ||
| with: | ||
| name: schema-bundle | ||
| path: build/ | ||
| - name: create release | ||
| uses: softprops/action-gh-release@v2 | ||
| with: | ||
| files: build/* | ||