Skip to content

Release workflow: tags are prefixed with a 'v' #1

Release workflow: tags are prefixed with a 'v'

Release workflow: tags are prefixed with a 'v' #1

Workflow file for this run

name: Deploy
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
build-and-upload:
name: Buidl and upload
runs-on: $${{ matrix.os }}
strategy:
matrix:
include:
- build: linux
os: ubuntu-latest
target: x86_64-unknown-linux-musl
- build: macos
os: macos-latest
target: x86_64-apple-darwin
- build: windows-gnu
os: windows-latest
target: x86_64-pc-windows-gnu
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@beta
with:
targets: ${{ matrix.target }}
- name: Extract release version
shell: bash
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
- name: Build
uses: actions-rs/cargo@v1
with:
use-cross: true
command: build
args: --verbose --release --target ${{ matrix.target }}
- name: Archive
shell: bash
run: |
tool_name = "rabbitmqadmin"
dirname="$tool_name-${{ env.VERSION }}-${{ matrix.target }}"
mkdir "$dirname"
if [ "${{ matrix.os }}" = "windows-latest" ]; then
mv "target/${{ matrix.target }}/release/$tool_name.exe" "$dirname"
else
mv "target/${{ matrix.target }}/release/$tool_name" "$dirname"
fi
if [ "${{ matrix.os }}" = "windows-latest" ]; then
7z a "$dirname.zip" "$dirname"
echo "ARCHIVE=$dirname.zip" >> $GITHUB_ENV
else
tar -czf "$dirname.tar.gz" "$dirname"
echo "ARCHIVE=$dirname.tar.gz" >> $GITHUB_ENV
fi
- name: Upload
uses: softprops/action-gh-release@v1
with:
files: |
${{ env.ARCHIVE }}