on:
release:
types: [created]
jobs:
release:
name: release x86_64-apple-darwin
runs-on: macos-26-intel
strategy:
fail-fast: false
matrix:
target:
- x86_64-apple-darwin
- aarch64-apple-darwin
steps:
- name: Setup Fluent CI CLI
uses: fluentci-io/setup-fluentci@v5
- name: Installing needed dependencies
run: brew install protobuf llvm@15
- name: Installing Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: ${{ matrix.target }}
override: true
- name: Checking out sources
uses: actions/checkout@v1
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Build web UI
working-directory: web
run: |
bun install --frozen-lockfile
bun run build
- name: Running cargo build
uses: actions-rs/cargo@v1
with:
command: build
toolchain: stable
args: --release --target ${{ matrix.target }}
- name: Install aarch64-apple-darwin toolchain
if: matrix.target == 'aarch64-apple-darwin'
run: rustup target add aarch64-apple-darwin
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Packaging final binary
shell: bash
run: |
cd target/${{ matrix.target }}/release
tar czvf ../../../tunein_${{ env.RELEASE_VERSION }}_${{ matrix.target }}.tar.gz tunein
shasum -a 256 ../../../tunein_${{ env.RELEASE_VERSION }}_${{ matrix.target }}.tar.gz > ../../../tunein_${{ env.RELEASE_VERSION }}_${{ matrix.target }}.tar.gz.sha256
cd ../../../ && rm -rf target
- name: Upload release assets
uses: softprops/action-gh-release@v1
with:
files: |
tunein_${{ env.RELEASE_VERSION }}_${{ matrix.target }}.tar.gz
tunein_${{ env.RELEASE_VERSION }}_${{ matrix.target }}.tar.gz.sha256
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}