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 9f4eaf9 commit 1b15d74Copy full SHA for 1b15d74
.github/workflows/docs.yaml
@@ -268,7 +268,7 @@ jobs:
268
name: "Publish"
269
runs-on: ubuntu-latest
270
needs: [build-docusaurus-site, build-docusaurus-site-formal-spec]
271
- if: github.ref == 'refs/heads/main' || github.event_name == 'workflow_run'
+ if: always() && (github.ref == 'refs/heads/main' || github.event_name == 'workflow_run')
272
steps:
273
- name: 📥 Download Docusaurus build
274
uses: actions/download-artifact@v4
@@ -277,6 +277,7 @@ jobs:
277
path: ./github-pages
278
279
- name: 🚀 Publish GitHub Pages
280
+ if: success()
281
uses: peaceiris/actions-gh-pages@v4
282
with:
283
github_token: ${{ secrets.GITHUB_TOKEN || github.token }}
0 commit comments