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 71b3070 commit 42e0010Copy full SHA for 42e0010
.github/workflows/release.yml
@@ -16,7 +16,7 @@ jobs:
16
token: ${{ secrets.GH_ACCESS_TOKEN_TOM }}
17
18
- id: get-version
19
- run: echo "::set-output name=version::$(echo ${{ github.head_ref }} | sed 's|release/||')"
+ run: echo "version=$(echo ${{ github.head_ref }} | sed 's|release/||')" >> "$GITHUB_OUTPUT"
20
21
- name: Use Node 16
22
uses: actions/setup-node@v3
@@ -90,7 +90,7 @@ jobs:
90
91
92
93
- run: echo "::set-output name=version::$(echo ${{ github.head_ref }} | sed 's|prerelease/||')"
+ run: echo "version=$(echo ${{ github.head_ref }} | sed 's|prerelease/||')" >> "$GITHUB_OUTPUT"
94
95
96
0 commit comments