We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d18ba4b commit 268b81cCopy full SHA for 268b81c
.github/workflows/compiler.yml
@@ -29,11 +29,15 @@ jobs:
29
cd ./$archive/projects/windows10
30
zip -r ../../../$archive.zip *
31
cd ../../..
32
+ echo 'pid: 1234'| sed -r 's/^.{5}//'
33
+ - name: Get the version
34
+ id: get_version
35
+ run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
36
- name: Upload binaries to release
37
uses: svenstaro/upload-release-action@v1-release
38
with:
39
repo_token: ${{ secrets.GITHUB_TOKEN }}
40
file: ${{ env.archive }}.zip
- asset_name: ${{ env.archive }}.zip
41
+ asset_name: ${{ env.archive }}-${{ steps.get_version.outputs.VERSION }}.zip
42
tag: ${{ github.ref }}
43
overwrite: true
0 commit comments