Skip to content

Revert "fix file path" #4

Revert "fix file path"

Revert "fix file path" #4

Workflow file for this run

name: Publish
on:
workflow_dispatch:
jobs:
quality_checks:
uses: ./.github/workflows/quality-checks.yml
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...