Skip to content

Commit 5e118d9

Browse files
committed
1 parent 2a73b46 commit 5e118d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
id: get_tag_name
5454
run: |
5555
TAG="${GITHUB_REF##*/}"
56-
echo ::set-output name=AVRDUDE_TAG::v${TAG%%-*}
56+
echo "AVRDUDE_TAG=v${TAG%%-*}" >> $GITHUB_OUTPUT
5757
5858
# this repo should contain only the patches that could not be upstreamed and the release CI nothing else
5959
- name: Checkout avrdude-packing repository
@@ -201,7 +201,7 @@ jobs:
201201
run: |
202202
wget -q -P /tmp https://github.com/fsaintjacques/semver-tool/archive/3.2.0.zip
203203
unzip -p /tmp/3.2.0.zip semver-tool-3.2.0/src/semver >/tmp/semver && chmod +x /tmp/semver
204-
if [[ "$(/tmp/semver get prerel "${GITHUB_REF/refs\/tags\//}")" ]]; then echo "::set-output name=IS_PRE::true"; fi
204+
if [[ "$(/tmp/semver get prerel "${GITHUB_REF/refs\/tags\//}")" ]]; then echo "IS_PRE=true" >> $GITHUB_OUTPUT; fi
205205
206206
- name: Generate package index entry
207207
run: |

0 commit comments

Comments
 (0)