Skip to content

Tabs r cool (#8)

Tabs r cool (#8) #13

Workflow file for this run

name: release
permissions:
pull-requests: write
contents: write
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
# Install Rust
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
target: wasm32-unknown-unknown
# Set RUSTFLAGS
- run: echo "RUSTFLAGS=--cfg=web_sys_unstable_apis" >> $GITHUB_ENV
# Cache rust compilation for speed
- uses: Swatinem/rust-cache@v2
# Run release-plz to create PRs and releases
- name: Run release-plz
uses: MarcoIeni/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}