Skip to content

Release

Release #14

Workflow file for this run

name: Release
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
permissions:
contents: write
jobs:
build:
name: Build (${{ matrix.target }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-unknown-linux-musl
os: ubuntu-latest
- target: aarch64-unknown-linux-musl
os: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- name: Install musl tools
run: |
sudo apt-get update
sudo apt-get install -y musl-tools
- name: Build
run: cargo build --release --locked --target ${{ matrix.target }}
- name: Package
run: |
target=${{ matrix.target }}
arch="${target%%-*}"
cp "target/$target/release/vume" "vume-${arch}"
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: vume-${{ matrix.target }}
path: "vume-*"
release:
name: Create Release
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
merge-multiple: true
- name: Create release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
files: artifacts/vume-*
- name: Update major version tag
run: |
TAG="${GITHUB_REF#refs/tags/}"
MAJOR="${TAG%%.*}"
git tag -f "$MAJOR" "$TAG"
git push origin "$MAJOR" --force