Skip to content

Commit ee4d306

Browse files
committed
fixed voutput refs
1 parent eb597f4 commit ee4d306

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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 }}

0 commit comments

Comments
 (0)