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 f7d7ee4 commit bb7cb6bCopy full SHA for bb7cb6b
.github/workflows/main.yml
@@ -10,6 +10,8 @@ concurrency: ${{ github.workflow }}-${{ github.ref }}
10
jobs:
11
publish:
12
runs-on: ubuntu-latest
13
+ outputs:
14
+ published: ${{ steps.changesets.outputs.published }}
15
steps:
16
- uses: actions/checkout@v2
17
@@ -87,7 +89,7 @@ jobs:
87
89
name: 'Prepare Docs for the Review'
88
90
needs: publish
91
- if: steps.changesets.outputs.published
92
+ if: needs.publish.outputs.published == 'true'
93
environment:
94
name: Docs staging
95
url: ${{ steps.publish_docs.outputs.NETLIFY_PREVIEW_URL }}
0 commit comments