Bump version #33
Workflow file for this run
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
name: build-package | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
release: | |
name: Release - ${{ matrix.platform.release_for }} | |
if: startsWith(github.ref, 'refs/tags/v') | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- release_for: Linux-x86_64 | |
os: ubuntu-latest | |
target: x86_64-unknown-linux-gnu | |
suffix: linux_amd64.bin | |
toolchain: stable | |
- release_for: Windows-x86_64 | |
os: windows-latest | |
target: x86_64-pc-windows-msvc | |
suffix: windows_amd64.exe | |
toolchain: stable | |
- release_for: Linux-x86_64-musl | |
os: ubuntu-latest | |
target: x86_64-unknown-linux-musl | |
suffix: linux_x86_64_musl.bin | |
toolchain: stable | |
- release_for: Linux-armv7 | |
os: ubuntu-latest | |
target: armv7-unknown-linux-gnueabihf | |
suffix: linux_armv7_gnueabihf.bin | |
toolchain: stable | |
# Disabled until corss release a new version | |
# https://github.com/cross-rs/cross/issues/1222 | |
# | |
#- release_for: Android-aarch64 | |
# os: ubuntu-latest | |
# target: aarch64-linux-android | |
# suffix: linux_aarch64_android.bin | |
# toolchain: stable | |
runs-on: ${{ matrix.platform.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Install musl-tools | |
if: contains(matrix.platform.target, 'linux-musl') | |
run: sudo apt install musl-tools | |
- name: Build | |
uses: houseabsolute/actions-rust-cross@v0 | |
with: | |
command: build | |
target: ${{ matrix.platform.target }} | |
toolchain: ${{ matrix.platform.toolchain }} | |
args: --release | |
strip: yes | |
- name: Packaging for Debian | |
if: matrix.platform.target == 'x86_64-unknown-linux-gnu' | |
run: | | |
cargo install cargo-deb | |
cargo deb --target=${{ matrix.platform.target }} --no-build | |
- name: Packaging binary for Linux | |
if: contains(matrix.platform.os, 'ubuntu') | |
run: xz -kfS "_${GITHUB_REF#*/v}${{ matrix.platform.suffix }}.xz" target/${{ matrix.platform.target }}/release/moproxy | |
- name: Packaging binary for Windows | |
if: contains(matrix.platform.os, 'windows') | |
run: xz -kf target/${{ matrix.platform.target }}/release/moproxy.exe > "moproxy_${GITHUB_REF#*/v}_${{ matrix.platform.suffix }}.xz" | |
- name: Release | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "*.xz,target/**/*.xz,target/**/*.deb" | |
draft: true | |
allowUpdates: true | |
updateOnlyUnreleased: true |