v0.3.0 #26
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 and release | |
on: | |
workflow_dispatch: | |
release: | |
types: [ created ] | |
permissions: | |
contents: write | |
jobs: | |
build: | |
name: ${{ matrix.platform.os_name }} with rust ${{ matrix.toolchain }} | |
runs-on: ${{ matrix.platform.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- os_name: Linux-aarch64 | |
os: ubuntu-20.04 | |
target: aarch64-unknown-linux-musl | |
bin: what-rs-linux-arm64 | |
- os_name: Linux-x86_64 | |
os: ubuntu-20.04 | |
target: x86_64-unknown-linux-gnu | |
bin: what-rs-linux-amd64 | |
- os_name: Windows-x86_64 | |
os: windows-latest | |
target: x86_64-pc-windows-msvc | |
bin: what-rs-amd64.exe | |
- os_name: macOS-x86_64 | |
os: macOS-latest | |
target: x86_64-apple-darwin | |
bin: what-rs-darwin-amd64 | |
- os_name: macOS-aarch64 | |
os: macOS-latest | |
target: aarch64-apple-darwin | |
bin: what-rs-darwin-arm64 | |
toolchain: | |
- stable | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build binary | |
uses: houseabsolute/actions-rust-cross@v0 | |
with: | |
command: "build" | |
target: ${{ matrix.platform.target }} | |
toolchain: ${{ matrix.toolchain }} | |
args: "--locked --release" | |
strip: true | |
- name: Build MSI installer (Windows only) | |
if: matrix.platform.os_name == 'Windows-x86_64' | |
run: | | |
# Install WiX Toolset using .NET CLI | |
dotnet tool install --global wix --version 5.0.* | |
# Build the MSI installer using Wix Toolset | |
wix build packages/wix/windows-installer.wxs -o target/wix/what-rs-amd64-windows-installer.msi -d EXE_FILE_PATH=target/${{ matrix.platform.target }}/release/what-rs.exe | |
# Generate SHA-256 checksum for the MSI file | |
shasum -a 256 target//wix/what-rs-amd64-windows-installer.msi | cut -d ' ' -f 1 > target/wix/what-rs-amd64-windows-installer.msi.sha256 | |
- name: Rename binary (linux and macos) | |
run: mv target/${{ matrix.platform.target }}/release/what-rs target/${{ matrix.platform.target }}/release/${{ matrix.platform.bin }} | |
if: matrix.platform.os_name != 'Windows-x86_64' | |
- name: Rename binary (windows) | |
run: mv target/${{ matrix.platform.target }}/release/what-rs.exe target/${{ matrix.platform.target }}/release/${{ matrix.platform.bin }} | |
if: matrix.platform.os_name == 'Windows-x86_64' | |
- name: Generate SHA-256 | |
run: shasum -a 256 target/${{ matrix.platform.target }}/release/${{ matrix.platform.bin }} | cut -d ' ' -f 1 > target/${{ matrix.platform.target }}/release/${{ matrix.platform.bin }}.sha256 | |
- name: Release binary and SHA-256 checksum to GitHub | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
target/${{ matrix.platform.target }}/release/${{ matrix.platform.bin }} | |
target/${{ matrix.platform.target }}/release/${{ matrix.platform.bin }}.sha256 | |
target/wix/what-rs-amd64-windows-installer.msi | |
target/wix/what-rs-amd64-windows-installer.msi.sha256 |