Skip to content

Bump

Bump #12

Workflow file for this run

---
name: Release CI
## TODO: set-output is deprecated and will be removed soon
## Best to find a workflow that's actually updated
# yamllint disable-line rule:truthy
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build
run: |
rustup target add wasm32-unknown-unknown
cargo install wasm-pack
wasm-pack build --no-default-features
pushd www
npm install
npm run build
popd
- name: Tar dist
run: tar -C www/ -czf its-a-unix-system.tar.gz dist
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: its-a-unix-system.tar.gz
body: Look at me I'm a release haha