Skip to content

Workflow file for this run

name: Release
on:
release:
types: [published]
jobs:
build:
uses: ./.github/workflows/build.yml

Check failure on line 9 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

error parsing called workflow ".github/workflows/release.yml" -> "./.github/workflows/build.yml" (source tag with sha:88f21c9c32a0ac382a897de060ec66ed3f9fc379) : workflow is not reusable as it is missing a `on.workflow_call` trigger
release:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
name: build.zip
- name: Upload Artifacts to GitHub Release
uses: ncipollo/release-action@v1
with:
artifacts: build.zip
allowUpdates: true
omitBodyDuringUpdate: true
omitDraftDuringUpdate: true
omitNameDuringUpdate: true
omitPrereleaseDuringUpdate: true