-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
lokesh185
committed
Feb 14, 2024
1 parent
ad35f73
commit 5645302
Showing
1 changed file
with
4 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,27 @@ | ||
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 tar.zst | ||
- target: x86_64-apple-darwin | ||
archive: zip | ||
- target: wasm32-wasi | ||
archive: zip tar.gz | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Compile and release | ||
uses: rust-build/rust-build.action@master | ||
uses: rust-build/rust-build.action@v1.4.4 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
RUSTTARGET: ${{ matrix.target }} | ||
SRC_DIR: "src" | ||
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 | ||
ARCHIVE_TYPES: ${{ matrix.archive }} |