all repos — mn @ a5db0443de657841c7182e00c2fd65671a667fb8

A truly minimal concatenative programming language.

Workflow fixes.
h3rald h3rald@h3rald.com
Wed, 31 Mar 2021 14:38:28 +0200
commit

a5db0443de657841c7182e00c2fd65671a667fb8

parent

59e051691b8319d37ee0c18eaf633d12d9de8eff

1 files changed, 2 insertions(+), 6 deletions(-)

jump to
M .github/workflows/release.yml.github/workflows/release.yml

@@ -76,16 +76,12 @@ if: matrix.os == 'windows-latest'

# Package the resulting Linux binary - name: Create artifact (Linux) - run: | - install -m 0755 ./mn . - zip mn_v${{steps.version-nix.outputs.id}}_linux_x64.zip mn + run: zip mn_v${{steps.version-nix.outputs.id}}_linux_x64.zip mn if: matrix.os == 'ubuntu-latest' # Package the resulting MacOS binary - name: Create artifact (MacOS) - run: | - install -m 0755 ./mn . - zip mn_v${{steps.version-nix.outputs.id}}_macosx_x64.zip mn + run: zip mn_v${{steps.version-nix.outputs.id}}_macosx_x64.zip mn if: matrix.os == 'macosx-latest' # Package the resulting Windows binary