Skip to content

Commit

Permalink
add dummy publish
Browse files Browse the repository at this point in the history
  • Loading branch information
nthurow committed Feb 9, 2024
1 parent 3183508 commit e5b20a4
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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...

0 comments on commit e5b20a4

Please sign in to comment.