File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 2121 steps :
2222 - name : Checkout
2323 uses : actions/checkout@v3
24+ # https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions
25+ - name : Get release version
26+ # https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#setting-an-output-parameter
27+ run : echo "version=${GITHUB_REF#refs/*/}" >> "$GITHUB_OUTPUT"
28+ id : release-version
2429 - name : Install Node.js
2530 uses : actions/setup-node@v3
2631 with :
3136 run : npm run build
3237 - name : Build checksum
3338 run : sha512sum confluence-markup-${{ steps.release-version.outputs.version }}.vsix > confluence-markup-${{ steps.release-version.outputs.version }}.vsix.sha512
34- # https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions
35- - name : Get release version
36- # https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#setting-an-output-parameter
37- run : echo "version=${GITHUB_REF#refs/*/}" >> "$GITHUB_OUTPUT"
38- id : release-version
3939 - name : Create release notes for version ${{ steps.release-version.outputs.version }}
4040 # run: npm run --silent changelog > RELEASE_NOTES_${{ steps.release-version.outputs.version }}.md
4141 run : |
You can’t perform that action at this time.
0 commit comments