Skip to content

Commit 0104fec

Browse files
committed
ci: Fix release artifact naming
1 parent bffd0b3 commit 0104fec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ jobs:
6363

6464
- name: Set Archive Name (Non-Windows)
6565
id: archive
66-
run: echo "archive_name=knope-${{ matrix.target }}-${{ steps.get_release.outputs.tag_name }}" >> $GITHUB_ENV
66+
run: echo "archive_name=knope-${{ matrix.target }}" >> $GITHUB_ENV
6767

6868
- name: Set Archive Name (Windows)
6969
if: ${{ matrix.os == 'windows-latest' }}
70-
run: echo "archive_name=knope-${{ matrix.target }}-${{ steps.get_release.outputs.tag_name }}" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append
70+
run: echo "archive_name=knope-${{ matrix.target }}" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append
7171

7272
- name: Create Archive Folder
7373
run: mkdir ${{ env.archive_name }}

0 commit comments

Comments
 (0)