Skip to content
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.

* refactor(error): begin use of anyhow #25

* refactor(error): begin use of anyhow

* refactor(error): begin use of anyhow #25

Workflow file for this run

name: Release
on:
release:
types: [created]
push:
jobs:
release:
name: Release
runs-on: ubuntu-latest
if: github.event_name == 'release'
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-pc-windows-gnu
archive: zip
- target: x86_64-unknown-linux-musl
archive: tar.gz
- target: x86_64-apple-darwin
archive: zip
- target: wasm32-wasi
archive: zip tar.gz
steps:
- uses: actions/checkout@master
- name: Compile and release
uses: rust-build/rust-build.action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
RUSTTARGET: ${{ matrix.target }}
ARCHIVE_TYPES: ${{ matrix.archive }}