Skip to content

v0.0.3

v0.0.3 #5

Workflow file for this run

name: Release
on:
release:
types: [published]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install WASI SDK
uses: konsumer/install-wasi-sdk@v1
with:
version: "25"
- name: Configure CMake
run: cmake -B build -DCMAKE_TOOLCHAIN_FILE=$WASI_SDK_PATH/share/cmake/wasi-sdk.cmake -DCMAKE_BUILD_TYPE=Release
- name: Build CMake
run: cmake --build build
- run: gh release upload ${{github.event.release.tag_name}} *.null0
env:
GH_TOKEN: ${{ github.token }}