We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bffd0b3 commit 0104fecCopy full SHA for 0104fec
.github/workflows/release.yml
@@ -63,11 +63,11 @@ jobs:
63
64
- name: Set Archive Name (Non-Windows)
65
id: archive
66
- run: echo "archive_name=knope-${{ matrix.target }}-${{ steps.get_release.outputs.tag_name }}" >> $GITHUB_ENV
+ run: echo "archive_name=knope-${{ matrix.target }}" >> $GITHUB_ENV
67
68
- name: Set Archive Name (Windows)
69
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
+ run: echo "archive_name=knope-${{ matrix.target }}" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append
71
72
- name: Create Archive Folder
73
run: mkdir ${{ env.archive_name }}
0 commit comments