Skip to content

changes to CI

changes to CI #51

Workflow file for this run

name: Release
on:
push:
tags:
- '*'
permissions:
contents: read
jobs:
artifacts:
# This job references a reusable workflow for handling artifacts.
uses: ./.github/workflows/artifacts.yml
with:
publish: true
release: true
permissions:
contents: write
packages: write
id-token: write
security-events: write
call-homebrew-workflow:
# This job references another reusable workflow for the Homebrew update.
# It starts only after the 'artifacts' job has completed successfully.
needs: artifacts
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
uses: ./.github/workflows/homebrew.yml

Check failure on line 29 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/homebrew.yml" (source tag with sha:282baed03289fd807818994c8c675179543d5003) : workflow is not reusable as it is missing a `on.workflow_call` trigger
with:
tag_name: ${{ github.ref_name }}
secrets: inherit