File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -235,10 +235,11 @@ jobs:
235235
236236 release :
237237 name : ' Create release'
238- needs : [publish-package, validate-release, versioning]
238+ needs : [workflow-variables, publish-package, validate-release, versioning]
239239 runs-on : ubuntu-latest
240240 env :
241241 release-version : ${{ needs.versioning.outputs.release-version }}
242+ is-preview : ${{ needs.workflow-variables.outputs.is-preview }}
242243 steps :
243244 - name : ' Checkout ${{ github.head_ref || github.ref }}'
244245 uses : actions/checkout@v5
@@ -247,4 +248,4 @@ jobs:
247248 uses : ./.github/actions/github/create-release
248249 with :
249250 release-version : ${{ env.release-version }}
250- is-preview : ${{ needs.workflow-variables.outputs .is-preview }}
251+ is-preview : ${{ env .is-preview }}
You can’t perform that action at this time.
0 commit comments