We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8cc5bb commit 718a65bCopy full SHA for 718a65b
1 file changed
.github/workflows/release.yml
@@ -17,6 +17,9 @@ jobs:
17
name: Release
18
runs-on: ubuntu-latest
19
20
+ outputs:
21
+ version: ${{ steps.extract-version.outputs.VERSION }}
22
+
23
steps:
24
- name: Generate GitHub App token
25
id: app-token
@@ -159,10 +162,12 @@ jobs:
159
162
if: ${{ !contains(matrix.target, '-windows-') }}
160
163
uses: softprops/action-gh-release@v2
161
164
with:
165
+ tag_name: ${{ needs.release.outputs.version }}
166
files: target/${{ matrix.package }}-${{ github.ref_name }}-${{ matrix.target }}.tar.gz
167
168
- name: Upload release asset (zip)
169
if: ${{ contains(matrix.target, '-windows-') }}
170
171
172
173
files: target/${{ matrix.package }}-${{ github.ref_name }}-${{ matrix.target }}.zip
0 commit comments