Skip to content

Commit

Permalink
wtf
Browse files Browse the repository at this point in the history
don't know how to use it
  • Loading branch information
wlh320 authored May 20, 2022
1 parent 9ccaccd commit 55c5fb1
Showing 1 changed file with 5 additions and 27 deletions.
32 changes: 5 additions & 27 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,51 +1,29 @@
# .github/workflows/release.yml

on:
release:
types: [created]
push:


jobs:
release:
name: release ${{ matrix.target }} (with non-required env)
name: release ${{ matrix.target }}
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
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@master
uses: rust-build/rust-build.action@v1.3.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
RUSTTARGET: ${{ matrix.target }}
EXTRA_FILES: "README.md"
SRC_DIR: "hello"
ARCHIVE_TYPES: ${{ matrix.archive }}
PRE_BUILD: "pre_build.sh"
POST_BUILD: "test/post_build.sh"
MINIFY: "yes"
release_without_not_required:
name: release ${{ matrix.target }}
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
target: [x86_64-unknown-linux-musl]
steps:
- uses: actions/checkout@master
- name: Compile and release
uses: rust-build/rust-build.action@master
with:
RUSTTARGET: ${{ matrix.target }}
UPLOAD_MODE: none
- name: Checkout output
run: ls -laR

0 comments on commit 55c5fb1

Please sign in to comment.