We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 504a5f2 commit c7114a7Copy full SHA for c7114a7
.github/workflows/ci.yml
@@ -164,12 +164,12 @@ jobs:
164
id: vars
165
env:
166
COMMIT_SHA: ${{ github.event.pull_request.head.sha || github.sha }}
167
- run: echo "::set-output name=sha_short::${COMMIT_SHA:0:7}"
+ run: echo "sha_short=${COMMIT_SHA:0:7}" >> $GITHUB_OUTPUT
168
169
- name: Store tag name
170
id: tag_name
171
if: startsWith(github.ref, 'refs/tags/')
172
- run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
+ run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
173
174
- name: Increment pre-release version
175
if: github.ref == 'refs/heads/master'
0 commit comments