We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 514ab10 commit 1ad24e8Copy full SHA for 1ad24e8
.github/workflows/release.yml
@@ -18,6 +18,8 @@ jobs:
18
name: Release
19
runs-on: ubuntu-latest
20
if: ${{ github.event.workflow_run.conclusion == 'success' }}
21
+ outputs:
22
+ deploy_docs: ${{ steps.changesets.outputs.publish }}
23
steps:
24
- uses: actions/checkout@v4
25
with:
@@ -66,6 +68,7 @@ jobs:
66
68
needs: release
67
69
name: Deploy Docs to GitHub Pages
70
71
+ if: ${{ needs.release.outputs.deploy_docs == 'true' }}
72
73
environment:
74
name: github-pages
0 commit comments