This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
Build and Release #35
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 and Upload Rust Binaries | |
on: | |
release: | |
types: [created] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
permissions: | |
contents: write | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
target: x86_64-unknown-linux-gnu | |
filename: downapk-x86_64-linux | |
- os: macos-latest | |
target: x86_64-apple-darwin | |
filename: downapk-x86_64-darwin | |
- os: windows-latest | |
target: x86_64-pc-windows-msvc | |
filename: downapk-x86_64-windows.exe | |
- os: ubuntu-latest | |
target: aarch64-unknown-linux-gnu | |
filename: downapk-aarch64-linux | |
- os: macos-latest | |
target: aarch64-apple-darwin | |
filename: downapk-aarch64-darwin | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: stable | |
target: ${{ matrix.target }} | |
- name: Install OpenSSL | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y pkg-config libssl-dev | |
- name: Build for non-linux | |
if: matrix.os != 'ubuntu-latest' | |
run: cargo build --release --target ${{ matrix.target }} | |
- name: Build for linux | |
if: matrix.os == 'ubuntu-latest' | |
run: cargo build --release --target ${{ matrix.target }} --features openssl-vendored | |
- name: Upload unix-like binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
if: contains(matrix.target, 'windows') == false | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: target/${{ matrix.target }}/release/downapk | |
asset_name: ${{ matrix.filename }} | |
tag: ${{ github.ref }} | |
file_glob: false | |
- name: Upload windows binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
if: contains(matrix.target, 'windows') == true | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: target/${{ matrix.target }}/release/downapk.exe | |
asset_name: ${{ matrix.filename }} | |
tag: ${{ github.ref }} | |
file_glob: false |