Skip to content

Merge branch 'main' of github.com:iankressin/tx-lang #12

Merge branch 'main' of github.com:iankressin/tx-lang

Merge branch 'main' of github.com:iankressin/tx-lang #12

Workflow file for this run

name: release
on:
push:
branches: [main]
jobs:
release:
name: release ${{ matrix.target }} (with non-required env)
runs-on: ubuntu-latest
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
steps:
- uses: actions/checkout@master
- name: Compile and release
uses: rust-build/rust-build.action@master
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
with:
RUSTTARGET: ${{ matrix.target }}
EXTRA_FILES: "README.md LICENSE"