all repos — mn @ ac2e55ffc831db9c4a28aabcd52d181c1ed1526b

A truly minimal concatenative programming language.

Update and rename release.yml to add-artifacts-to-current-release.yml
Fabio Cevasco h3rald@h3rald.com
Thu, 01 Apr 2021 11:23:17 +0200
commit

ac2e55ffc831db9c4a28aabcd52d181c1ed1526b

parent

47aa6f78ffe0ada47df262322b2425eb6044c3f1

1 files changed, 3 insertions(+), 3 deletions(-)

jump to
M .github/workflows/release.yml.github/workflows/add-artifacts-to-current-release.yml

@@ -1,4 +1,4 @@

-name: Release +name: Add artifacts to current release # Controls when the action will run. on:

@@ -78,12 +78,12 @@ view_top: 1

# Package the resulting Linux/MacOS binary - name: Create artifact (Linux, MacOS) - run: zip mn_${{steps.current-release.outputs.name }}_${{steps.os.outputs.id}}_x64.zip mn + run: zip mn_${{steps.current-release.outputs.tag_name}}_${{steps.os.outputs.id}}_x64.zip mn if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' # Package the resulting Windows binary - name: Create artifact (Windows) - run: Compress-Archive -Path mn.exe -DestinationPath mn_v${{steps.version-win.outputs.id}}_windows_x64.zip + run: Compress-Archive -Path mn.exe -DestinationPath mn_${{steps.current-release.outputs.tag_name}}_windows_x64.zip if: matrix.os == 'windows-latest' # Upload artifacts