Skip to content

fix file path

fix file path #2

Workflow file for this run

name: Publish
on:
workflow_dispatch:
jobs:
quality_checks:
uses: ../workflows/quality-checks.yml

Check failure on line 8 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yml

Invalid workflow file

invalid value workflow reference: no version specified
publish:
runs-on: ubuntu-latest
needs: quality_checks
steps:
- name: Verify main branch
if: github.ref_name != 'main'
run: |
echo "Invalid branch: can only publish from main"
exit 1
- name: Setup
- uses: ./.github/actions/setup
- name: Publish
run: echo Publishing...