Skip to content

cli-release

cli-release #20

Workflow file for this run

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.outputs.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.outputs.triple }}/release/divviup \
divviup-${{ steps.resolve-inputs.outputs.triple }}
gh release upload \
${{ steps.resolve-inputs.outputs.tag }} divviup-${{ steps.resolve-inputs.outputs.triple }} \
--clobber