cli-release #19
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: cli-release | |
on: | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: release/tag to upload artifacts to | |
required: true | |
type: string | |
release: | |
types: [published] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build-cli: | |
strategy: | |
matrix: | |
arch: ["x86_64", "aarch64"] | |
target: [ | |
{ os: "ubuntu-latest", triple-suffix: "-unknown-linux-gnu" }, | |
#{ os: "windows-latest", triple-suffix: "-pc-windows-msvc" }, | |
#{ os: "macos-latest", triple-suffix: "-apple-darwin" } | |
] | |
runs-on: ${{ matrix.target.os }} | |
steps: | |
- name: Resolve inputs | |
id: resolve-inputs | |
run: | | |
TAG_INPUT=${{ inputs.tag }} | |
TAG=${GITHUB_REF/refs\/tags\//} | |
echo $TAG_INPUT | |
echo $TAG | |
echo "tag=${TAG_INPUT:TAG}" >> $GITHUB_OUTPUT | |
echo "triple=${{ format('{0}{1}', matrix.arch, matrix.target.triple-suffix) }}" >> $GITHUB_OUTPUT | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build | |
uses: houseabsolute/actions-rust-cross@v0 | |
with: | |
target: ${{ steps.resolve-inputs.triple }} | |
args: "--locked --release --package divviup-cli" | |
strip: true | |
- name: Publish | |
env: | |
GH_TOKEN: '${{ secrets.DIVVIUP_GITHUB_AUTOMATION_RELEASE_PAT }}' | |
run: | | |
cp target/${{ steps.resolve-inputs.triple }}/release/divviup \ | |
divviup-${{ steps.resolve-inputs.triple }} | |
gh release upload \ | |
${{ steps.resolve-inputs.tag }} divviup-${{ steps.resolve-inputs.triple }} \ | |
--clobber |