-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Separate macOS and Linux workflows
Signed-off-by: Maksim Dimitrov <[email protected]>
- Loading branch information
1 parent
01de092
commit dc1ce39
Showing
2 changed files
with
42 additions
and
9 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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Release (MacOS, Linux) | ||
|
||
on: | ||
release: | ||
types: | ||
- created | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
deploy: | ||
name: Deploy for ${{ matrix.os }} | ||
if: startsWith(github.ref, 'refs/tags') | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
name: [macos-10.15, macos-11] | ||
|
||
include: | ||
- name: macos-10.15 | ||
os: macos-10.15 | ||
artifact_name: matchstick | ||
asset_name: binary-macos-10.15 | ||
- name: macos-11 | ||
os: macos-11 | ||
artifact_name: matchstick | ||
asset_name: binary-macos-11 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
toolchain: 1.68.0 | ||
- run: brew install protobuf | ||
|
||
- name: Build | ||
run: cargo build --release && mv target/release/${{ matrix.artifact_name }} target/release/${{ matrix.asset_name }} | ||
|
||
- name: Upload binaries to release | ||
run: echo ${{ secrets.GITHUB_TOKEN }} | gh auth login --with-token && gh release upload ${GITHUB_REF##*/} target/release/${{ matrix.asset_name }} |