Skip to content

Commit

Permalink
Rewrite program to Rust
Browse files Browse the repository at this point in the history
  • Loading branch information
Olivier Thornton committed Feb 10, 2023
1 parent 7647c79 commit 7a1251a
Show file tree
Hide file tree
Showing 10 changed files with 449 additions and 793 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Release

on:
release:
types: [created]
push:

jobs:
release:
name: release ${{ matrix.target }} (with non-required env)
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
steps:
- uses: actions/checkout@master
- name: Compile and release
uses: rust-build/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RUSTTARGET: ${{ matrix.target }}
ARCHIVE_TYPES: ${{ matrix.archive }}
MINIFY: "yes"
Loading

0 comments on commit 7a1251a

Please sign in to comment.