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.
2 parents eaa1e0b + d146a99 commit 7edfd84Copy full SHA for 7edfd84
.github/workflows/cleanup.yml
@@ -22,7 +22,7 @@ jobs:
22
_version="$(jq -r '.tools."${{ env.package_name }}".version' ./.config/dotnet-tools.json)"
23
_version="${_version//'.'/'\.'}"
24
_version="^${_version}\$"
25
- echo "::set-output name=version::${_version}"
+ echo "version=${_version}" >> $GITHUB_OUTPUT
26
27
# Keep the last 13 versions as well as the version used by the project itself
28
- uses: actions/[email protected]
.github/workflows/release.yml
@@ -19,7 +19,7 @@ jobs:
19
steps:
20
- name: Get version from tag
21
id: tag_name
- run: echo ::set-output name=current_version::${GITHUB_REF#refs/tags/v}
+ run: echo "current_version=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
- name: Check out repository
uses: actions/[email protected]
0 commit comments