Release Time #81
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: goreleaser | |
on: | |
push: | |
# run only against tags | |
tags: | |
- "*" | |
workflow_dispatch: | |
inputs: | |
debug_enabled: | |
type: boolean | |
description: "Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)" | |
required: false | |
default: false | |
permissions: | |
contents: write | |
# packages: write | |
issues: write | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Check that the Cargo.yaml has been updated with tag | |
if: ${{ !inputs.debug_enabled }} | |
run: | | |
if ! grep -E "version[ ]*=[ ]*.${GITHUB_REF#refs/tags/}." Cargo.toml; then | |
echo "Cargo.toml version does not match tag, version in current Cargo.toml:" | |
exit 1 | |
fi | |
crate_metadata: | |
name: Extract crate metadata | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Extract crate information | |
id: crate_metadata | |
run: | | |
cargo metadata --no-deps --format-version 1 | jq -r '"name=" + .packages[0].name' | tee -a $GITHUB_OUTPUT | |
cargo metadata --no-deps --format-version 1 | jq -r '"version=" + .packages[0].version' | tee -a $GITHUB_OUTPUT | |
cargo metadata --no-deps --format-version 1 | jq -r '"maintainer=" + .packages[0].authors[0]' | tee -a $GITHUB_OUTPUT | |
cargo metadata --no-deps --format-version 1 | jq -r '"homepage=" + .packages[0].homepage' | tee -a $GITHUB_OUTPUT | |
cargo metadata --no-deps --format-version 1 | jq -r '"msrv=" + .packages[0].rust_version' | tee -a $GITHUB_OUTPUT | |
outputs: | |
name: ${{ steps.crate_metadata.outputs.name }} | |
version: ${{ steps.crate_metadata.outputs.version }} | |
maintainer: ${{ steps.crate_metadata.outputs.maintainer }} | |
homepage: ${{ steps.crate_metadata.outputs.homepage }} | |
msrv: ${{ steps.crate_metadata.outputs.msrv }} | |
build: | |
name: ${{ matrix.job.os }} (${{ matrix.job.target }}) | |
needs: [check, crate_metadata] | |
env: | |
BUILD_CMD: cargo | |
EXTENSION: "" | |
runs-on: ${{ matrix.job.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
job: | |
- { os: ubuntu-latest, target: x86_64-unknown-linux-gnu } | |
- { os: windows-2019, target: x86_64-pc-windows-msvc } | |
- { os: macos-latest, target: x86_64-apple-darwin } | |
- { | |
target: aarch64-unknown-linux-gnu, | |
os: ubuntu-20.04, | |
use-cross: true, | |
} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Fetch all tags | |
run: git fetch --force --tags | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
target: ${{ matrix.job.target }} | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install cross | |
if: matrix.job.use-cross | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: cross | |
- name: Overwrite build command env variable | |
if: matrix.job.use-cross | |
shell: bash | |
run: echo "BUILD_CMD=cross" >> $GITHUB_ENV | |
- name: Show version information (Rust, cargo, GCC) | |
shell: bash | |
run: | | |
gcc --version || true | |
rustup -V | |
rustup toolchain list | |
rustup default | |
cargo -V | |
rustc -V | |
- name: Add Extension variable on windows | |
if: matrix.job.os == 'windows-2019' | |
shell: bash | |
run: echo "EXTENSION=.exe" >> $GITHUB_ENV | |
- name: Build on ${{ matrix.job.target }} | |
shell: bash | |
run: $BUILD_CMD build --locked --release --target=${{ matrix.job.target }} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: snazy-${{ matrix.job.target }} | |
path: target/${{ matrix.job.target }}/release/snazy${{ env.EXTENSION }} | |
- name: Set binary name & path | |
id: bin | |
shell: bash | |
run: | | |
# Figure out suffix of binary | |
EXE_suffix="" | |
case ${{ matrix.job.target }} in | |
*-pc-windows-*) EXE_suffix=".exe" ;; | |
esac; | |
# Setup paths | |
BIN_NAME="${{ needs.crate_metadata.outputs.name }}${EXE_suffix}" | |
BIN_PATH="target/${{ matrix.job.target }}/release/${BIN_NAME}" | |
# Let subsequent steps know where to find the binary | |
echo "BIN_PATH=${BIN_PATH}" >> $GITHUB_OUTPUT | |
echo "BIN_NAME=${BIN_NAME}" >> $GITHUB_OUTPUT | |
- name: Create tarball | |
id: package | |
shell: bash | |
run: | | |
set -x | |
PKG_suffix=".tar.gz" ; case "${{ matrix.job.target }}" in *-pc-windows-*) PKG_suffix=".zip" ;; esac; | |
PKG_BASENAME=${{ needs.crate_metadata.outputs.name }}-v${{ needs.crate_metadata.outputs.version }}-${{ matrix.job.target }} | |
PKG_NAME=${PKG_BASENAME}${PKG_suffix} | |
echo "PKG_NAME=${PKG_NAME}" >> $GITHUB_OUTPUT | |
PKG_STAGING="package" | |
ARCHIVE_DIR="${PKG_STAGING}/${PKG_BASENAME}/" | |
mkdir -p "${ARCHIVE_DIR}" | |
# Binary | |
cp "${{ steps.bin.outputs.BIN_PATH }}" "$ARCHIVE_DIR" | |
# README, LICENSE and CHANGELOG files | |
cp "README.md" "LICENSE-MIT" "LICENSE-APACHE" "CHANGELOG.md" "$ARCHIVE_DIR" | |
# Man page | |
cp 'doc/${{ needs.crate_metadata.outputs.name }}.1' "$ARCHIVE_DIR" | |
# Autocompletion files | |
cp -r autocomplete "${ARCHIVE_DIR}" | |
# base compressed package | |
pushd "${PKG_STAGING}/" >/dev/null | |
case "${{ matrix.job.target }}" in | |
*-pc-windows-*) 7z -y a "${PKG_NAME}" "${PKG_BASENAME}"/* | tail -2 ;; | |
*) tar czf "${PKG_NAME}" "${PKG_BASENAME}"/* ;; | |
esac; | |
popd >/dev/null | |
# Let subsequent steps know where to find the compressed package | |
echo "PKG_PATH=${PKG_STAGING}/${PKG_NAME}" >> $GITHUB_OUTPUT | |
- name: Setup tmate session | |
uses: mxschmitt/action-tmate@v3 | |
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }} | |
# goreleaser: | |
# name: Goreleaser over Rust | |
# needs: build | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v4 | |
# with: | |
# fetch-depth: 0 | |
# - uses: actions/download-artifact@v4 | |
# with: | |
# name: snazy-x86_64-unknown-linux-gnu | |
# path: target/linux_amd64/snazy | |
# - uses: actions/download-artifact@v4 | |
# with: | |
# name: snazy-x86_64-apple-darwin | |
# path: target/darwin_amd64/snazy | |
# - uses: actions/download-artifact@v4 | |
# with: | |
# name: snazy-aarch64-unknown-linux-gnu | |
# path: target/linux_arm64/snazy | |
# - uses: actions/download-artifact@v4 | |
# with: | |
# name: snazy-x86_64-pc-windows-msvc | |
# path: target/windows_amd64/snazy.exe | |
# with: | |
# limit-access-to-actor: true | |
# - name: Run GoReleaser | |
# uses: goreleaser/goreleaser-action@v5 | |
# with: | |
# distribution: goreleaser | |
# version: latest | |
# args: release --clean | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# AUR_PRIVATE_KEY: ${{ secrets.AUR_PRIVATE_KEY }} | |
# | |
# - uses: katyo/publish-crates@v2 | |
# with: | |
# registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} |