Skip to content

Commit

Permalink
Update Github Workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
PineappleIOnic committed Dec 14, 2021
1 parent 409d88d commit 192df77
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 49 deletions.
49 changes: 0 additions & 49 deletions .github/workflows/publish.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# .github/workflows/release.yml

on:
release:
types: [created]

jobs:
release:
name: release ${{ matrix.target }}
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 tar.xz
- target: x86_64-apple-darwin
archive: zip
steps:
- uses: actions/checkout@master
- name: Compile and release
uses: rust-build/rust-build.action@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RUSTTARGET: ${{ matrix.target }}
ARCHIVE_TYPES: ${{ matrix.archive }}

0 comments on commit 192df77

Please sign in to comment.