all repos — hex @ 994268e194d73c1222017bf7c41d4645227be821

A tiny, minimalist, slightly-esoteric concatenative programming lannguage.

Fixes.
h3rald h3rald@h3rald.com
Thu, 05 Dec 2024 09:52:11 +0100
commit

994268e194d73c1222017bf7c41d4645227be821

parent

4e5c8c6d04f37359742dfccad0573ca64a448ccb

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

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

@@ -80,13 +80,17 @@ if: matrix.os == 'ubuntu-latest'

# Package the resulting WASM binary - name: Create artifact (Linux - WASM) - run: zip hex_${{steps.current-release.outputs.tag_name}}_wasm.zip hex + run: zip hex_${{steps.current-release.outputs.tag_name}}_wasm.zip hex.wasm hex.js + if: matrix.os == 'ubuntu-latest' + + # Add cosmocc to PATH + - name: Add cosmocc to PATH + run: echo $(HOME)/cosmocc/bin >> $GITHUB_PATH if: matrix.os == 'ubuntu-latest' # Generate APE binary - name: Generate APE binary run: | - echo $(HOME)/cosmocc/bin >> $GITHUB_PATH mv hex hex.native make ape if: matrix.os == 'ubuntu-latest'