Skip to content

Commit

Permalink
ATOMIC commit that fixes a bug in the docs action event name (#738)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbryngelson authored Nov 17, 2024
1 parent adc3c29 commit 80cfb88
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,9 @@ jobs:
with:
args: -c .lychee.toml build/install/docs/mfc/
fail: false
continue-on-error: true

- name: Publish Documentation
if: (github.repository == 'MFlowCode/MFC' && github.ref == 'refs/heads/master' && github.event_name == 'cron' ) || github.event_name == 'workflow_dispatch'
if: github.repository == 'MFlowCode/MFC' && github.ref == 'refs/heads/master' && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' )
run: |
set +e
git ls-remote "${{ secrets.DOC_PUSH_URL }}" -q
Expand Down

0 comments on commit 80cfb88

Please sign in to comment.