We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43ac43b commit 4de221eCopy full SHA for 4de221e
.github/workflows/documentation.yaml
@@ -111,10 +111,10 @@ jobs:
111
112
- run: ls -lh site/*
113
114
- - run: echo "event_name=${{github.event_name}}"
+ - run: echo "event_name=${{github.event_name}} event_ref=${{github.event_ref}}"
115
116
- name: Deploy docs
117
- if: ${{ ( github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' ) && github.event.ref == 'refs/heads/main' }}
+ if: ${{ ( github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' ) && ( github.event.ref == 'refs/heads/main' ) }}
118
uses: peaceiris/actions-gh-pages@v4
119
with:
120
github_token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments