Skip to content

Commit 8171ee9

Browse files
authored
Merge pull request #26 from cachedjdk/gh-actions-set-output
CI: Fix use of deprecated set-output
2 parents 5579563 + 072a080 commit 8171ee9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
if: startsWith(github.ref, 'refs/tags/v')
8484
run: |
8585
VERSION="${GITHUB_REF##refs/tags/v}"
86-
echo "::set-output name=version::${VERSION}"
86+
echo "version=${VERSION}" >>$GITHUB_OUTPUT
8787
- name: Publish to gh-pages (tag)
8888
if: >-
8989
github.repository == 'cachedjdk/cjdk' &&

0 commit comments

Comments
 (0)