Skip to content

Commit 78dcb2f

Browse files
committed
Fix release artifact upload action and fix a deprecation notice
1 parent 160f8d0 commit 78dcb2f

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
@@ -31,9 +31,9 @@ jobs:
3131
- run: tools/box compile --verbose --no-ansi
3232
- name: Fetch tag name from GITHUB_REF
3333
id: get_version
34-
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)
34+
run: echo "VERSION=$(echo $GITHUB_REF | cut -d / -f 3)" >> $GITHUB_OUTPUT
3535
- name: Attach .phar to release
36-
uses: svenstaro/upload-release-action@14569a2d348419d066e34e5dfa65071ecd30b64b
36+
uses: svenstaro/upload-release-action@v2
3737
with:
3838
repo_token: ${{ secrets.GITHUB_TOKEN }}
3939
file: slimdump.phar

0 commit comments

Comments
 (0)