mirror of
https://github.com/Zedfrigg/ironbar.git
synced 2025-04-19 19:34:24 +02:00
39 lines
1.4 KiB
YAML
39 lines
1.4 KiB
YAML
# .github/workflows/binary.yml
|
|
|
|
name: Binary
|
|
on:
|
|
release:
|
|
types: [created]
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
platform:
|
|
- {target: x86_64-unknown-linux-gnu, zipext: ".tar.gz"}
|
|
- {target: aarch64-unknown-linux-gnu, zipext: ".tar.gz"}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: taiki-e/install-action@v2
|
|
with:
|
|
tool: cross
|
|
|
|
- name: Add OpenSSL crate (vendored)
|
|
run: cargo add openssl --features vendored
|
|
|
|
- name: Cross Build Release
|
|
run: cross build --locked --release --target=${{ matrix.platform.target }}
|
|
|
|
- name: Get name of Binary from metadata
|
|
run: echo "BINARY_NAME=$(cargo metadata --no-deps --format-version 1 | jq -r '.packages[].targets[] | select( .kind | map(. == "bin") | any ) | .name')" >> $GITHUB_ENV
|
|
|
|
- name: Compress the built binary
|
|
if: ${{ matrix.platform.zipext == '.tar.gz' }}
|
|
run: tar -zcvf ${{env.BINARY_NAME}}-${{github.ref_name}}-${{matrix.platform.target}}.tar.gz -C target/${{matrix.platform.target}}/release ${{env.BINARY_NAME}}
|
|
|
|
- name: Upload to release
|
|
run: gh release upload ${GITHUB_REF#refs/*/} ${{env.BINARY_NAME}}-${{github.ref_name}}-${{matrix.platform.target}}${{matrix.platform.zipext}}
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|