Skip to content

Commit b8f431c

Browse files
committed
1 parent d2d4143 commit b8f431c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release-insiders.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ jobs:
3838

3939
- name: Resolve version
4040
id: vars
41-
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
41+
run: "sha_short=$(git rev-parse --short HEAD) >> $GITHUB_ENV"
4242

43-
- name: "Version based on commit: 0.0.0-insiders.${{ steps.vars.outputs.sha_short }}"
44-
run: npm version 0.0.0-insiders.${{ steps.vars.outputs.sha_short }} --force --no-git-tag-version
43+
- name: "Version based on commit: 0.0.0-insiders.${{ env.sha_short }}"
44+
run: npm version 0.0.0-insiders.${{ env.sha_short }} --force --no-git-tag-version
4545

4646
- name: Publish
4747
run: npm publish --tag insiders

0 commit comments

Comments
 (0)