Skip to content

Release Smoke Test

Release Smoke Test #7

Workflow file for this run

name: Release Smoke Test
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+'
release:
types: [published]
workflow_dispatch:
inputs:
version:
description: 'Version to publish (e.g. 0.3.4)'
required: true
env:
CARGO_TERM_COLOR: always
jobs:
smoke-test:
name: Smoke Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Check formatting
run: cargo fmt --all -- --check
- name: Run Clippy Lints
run: cargo clippy -- -D warnings
- name: Build release
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose
- name: Smoke test — binary runs
run: ./target/release/lapctl --version
- name: Upload release artifact
uses: actions/upload-artifact@v4
with:
name: lapctl-${{ github.ref_name }}
path: ./target/release/lapctl
- name: Publish to crates.io
continue-on-error: true
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
run: cargo publish
publish-aur:
name: Publish to AUR
needs: smoke-test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
- name: Get version
id: version
run: echo "version=${VERSION}" >> "$GITHUB_OUTPUT"
env:
VERSION: ${{ github.event.inputs.version || github.ref_name }}
- name: Generate PKGBUILD with cargo-aur
run: |
cargo install cargo-aur
mkdir -p aur-pkg
cargo aur --output aur-pkg
- name: Generate .SRCINFO
run: |
docker run --rm -v "$(pwd)/aur-pkg:/build" archlinux:latest \
bash -c "cd /build && makepkg --printsrcinfo > .SRCINFO"
- name: Push to AUR
uses: KSXGitHub/github-actions-deploy-aur@v2.5.0
with:
pkgname: lapctl-bin
pkgver: ${{ steps.version.outputs.version }}
assets: |
aur-pkg/PKGBUILD
aur-pkg/.SRCINFO
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
commit_username: ${{ github.actor }}
commit_email: ${{ github.actor }}@users.noreply.github.com