-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Tiago Castro <[email protected]>
- Loading branch information
1 parent
73624dd
commit f8d70c6
Showing
1 changed file
with
58 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Publish Bins | ||
on: | ||
push: | ||
branches: | ||
- test | ||
|
||
# release: | ||
# types: [published] | ||
jobs: | ||
paperclip-bins: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- os: ubuntu-latest | ||
target: x86_64-unknown-linux-musl | ||
- os: ubuntu-latest | ||
arch: aarch64-unknown-linux-musl | ||
- os: macos-14 | ||
target: x86_64-apple-darwin | ||
- os: macos-13 | ||
target: aarch64-apple-darwin | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Install Rust | ||
uses: dtolnay/rust-toolchain@stable | ||
with: | ||
targets: ${{ matrix.target }} | ||
- name: Build | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
use-cross: true | ||
command: build | ||
args: --bins --verbose --release --features "cli" -p paperclip -p paperclip-codegen --target ${{ matrix.target }} | ||
# - name: Build archive | ||
# shell: bash | ||
# run: | | ||
# # Replace with the name of your binary | ||
# binary_name="<BINARY_NAME>" | ||
|
||
# dirname="$binary_name-${{ env.VERSION }}-${{ matrix.target }}" | ||
# mkdir "$dirname" | ||
# if [ "${{ matrix.os }}" = "windows-latest" ]; then | ||
# mv "target/${{ matrix.target }}/release/$binary_name.exe" "$dirname" | ||
# else | ||
# mv "target/${{ matrix.target }}/release/$binary_name" "$dirname" | ||
# fi | ||
|
||
# if [ "${{ matrix.os }}" = "windows-latest" ]; then | ||
# 7z a "$dirname.zip" "$dirname" | ||
# echo "ASSET=$dirname.zip" >> $GITHUB_ENV | ||
# else | ||
# tar -czf "$dirname.tar.gz" "$dirname" | ||
# echo "ASSET=$dirname.tar.gz" >> $GITHUB_ENV | ||
# fi |