Skip to content

chore: version 2023.9.27 #1

chore: version 2023.9.27

chore: version 2023.9.27 #1

Workflow file for this run

name: Release
permissions:
contents: write
on:
push:
tags:
- 'v*.*.**'
env:
CARGO_TERM_COLOR: always
jobs:
deb-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: x86_64-unknown-linux-musl
- uses: taiki-e/install-action@v2
with:
tool: cargo-deb
- run: cargo deb --target x86_64-unknown-linux-musl
- uses: softprops/action-gh-release@v1
with:
files: target/x86_64-unknown-linux-musl/debian/shh_*.deb
token: ${{ secrets.GITHUB_TOKEN }}