fix: publish binaries #20
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 | |
on: | |
push: | |
branches: [ "main" ] | |
tags: ["v*.*.*"] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
name: Build - ${{ matrix.platform.os-name }} | |
strategy: | |
matrix: | |
platform: | |
- os-name: Linux-x86_64 | |
runs-on: ubuntu-latest | |
target: x86_64-unknown-linux-musl | |
runs-on: ${{ matrix.platform.runs-on }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build base image | |
run: | | |
cargo run --bin build-img | |
cargo clean | |
- name: Upload artifacts - base image | |
uses: actions/upload-artifact@v4 | |
with: | |
name: base-${{ matrix.platform.target }} | |
path: | | |
base.tar.xz | |
- name: Build binary | |
uses: houseabsolute/actions-rust-cross@v0 | |
with: | |
command: ${{ matrix.platform.command }} | |
target: ${{ matrix.platform.target }} | |
args: "--locked --release --features embedded_image" | |
strip: true | |
- name: Rename binary | |
env: | |
TARGET: ${{ matrix.platform.target }} | |
run: | | |
mv "target/$TARGET/release/dive" "dive-$TARGET" | |
- name: Upload artifacts - binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: binary-${{ matrix.platform.target }} | |
path: dive-* | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
draft: true | |
files: dive-* |