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 d2d4143 commit b8f431cCopy full SHA for b8f431c
.github/workflows/release-insiders.yml
@@ -38,10 +38,10 @@ jobs:
38
39
- name: Resolve version
40
id: vars
41
- run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
+ run: "sha_short=$(git rev-parse --short HEAD) >> $GITHUB_ENV"
42
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
+ - name: "Version based on commit: 0.0.0-insiders.${{ env.sha_short }}"
+ run: npm version 0.0.0-insiders.${{ env.sha_short }} --force --no-git-tag-version
45
46
- name: Publish
47
run: npm publish --tag insiders
0 commit comments