Skip to content

Commit

Permalink
test: test
Browse files Browse the repository at this point in the history
Signed-off-by: Tiago Castro <[email protected]>
  • Loading branch information
tiagolobocastro committed Oct 20, 2024
1 parent 73624dd commit 5a4fc3f
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
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
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

0 comments on commit 5a4fc3f

Please sign in to comment.