-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Error if upload-artifact can't find the files it has to upload * run maturin stuff on every branch * Run Rust release on every branch * Put dist folder one level up * Try building library * Change to CLI * Upload cli artifact * Rename built cli artifact
- Loading branch information
1 parent
a81ab0e
commit 64ea4b1
Showing
2 changed files
with
57 additions
and
25 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
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,42 +1,72 @@ | ||
name: Rust crate and cli release | ||
|
||
on: | ||
release: | ||
types: [created] | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
release: | ||
name: release ${{ matrix.target }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
include: # https://github.com/rust-build/rust-build.action#supported-targets | ||
- target: x86_64-pc-windows-gnu | ||
archive: zip | ||
- target: x86_64-pc-windows-msvc | ||
archive: zip | ||
- target: x86_64-apple-darwin | ||
archive: zip | ||
- target: x86_64-unknown-linux-musl | ||
archive: tar.gz | ||
- target: x86_64-unknown-linux-gnu | ||
archive: tar.gz | ||
|
||
steps: | ||
- uses: actions/checkout@master | ||
- name: Compile and release | ||
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Compile cli for artifact | ||
id: compile_cli | ||
uses: rust-build/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
RUSTTARGET: ${{ matrix.target }} | ||
ARCHIVE_TYPES: ${{ matrix.archive }} | ||
SRC_DIR: cli/ | ||
UPLOAD_MODE: none | ||
|
||
- name: Upload cli artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: crunch64-cli-${{ matrix.target }} | ||
path: | | ||
${{ steps.compile_cli.outputs.BUILT_ARCHIVE }} | ||
${{ steps.compile_cli.outputs.BUILT_CHECKSUM }} | ||
- name: Compile and release cli | ||
uses: rust-build/[email protected] | ||
if: "startsWith(github.ref, 'refs/tags/')" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
RUSTTARGET: ${{ matrix.target }} | ||
ARCHIVE_TYPES: ${{ matrix.archive }} | ||
SRC_DIR: cli/ | ||
UPLOAD_MODE: release | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions-rs/toolchain@v1 | ||
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Rust toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
- uses: katyo/publish-crates@v2 | ||
toolchain: stable | ||
override: true | ||
|
||
- name: Publish crate | ||
uses: katyo/publish-crates@v2 | ||
if: "startsWith(github.ref, 'refs/tags/')" | ||
with: | ||
registry-token: ${{ secrets.CRATE_AUTH_TOKEN }} | ||
registry-token: ${{ secrets.CRATE_AUTH_TOKEN }} |