Skip to content

Add window

Add window #2

Workflow file for this run

name: Deploy
# on:
# release:
# types: [created]
on: push # for testing
jobs:
release:
name: release ${{ matrix.target }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-unknown-linux-musl
archive: tar.gz tar.xz tar.zst
os: ubuntu-latest
- target: x86_64-apple-darwin
archive: zip
os: macos-latest
- target: x86_64-pc-windows-gnu
archive: zip
os: windows-latest
steps:
- uses: actions/checkout@master
- name: Compile and release
uses: rust-build/rust-build.action@v1.4.5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
RUSTTARGET: ${{ matrix.target }}
ARCHIVE_TYPES: ${{ matrix.archive }}