chore(release): prep for v4.1.0-rc.2 #26
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: Release | |
on: | |
push: | |
tags: | |
- v*.*.* | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
crates-io: | |
runs-on: ubuntu-latest | |
env: | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Publish crate | |
run: cargo publish | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install cargo-deb | |
uses: baptiste0928/[email protected] | |
with: | |
crate: cargo-deb | |
- name: Install cargo-generate-rpm | |
uses: baptiste0928/[email protected] | |
with: | |
crate: cargo-generate-rpm | |
- name: Build | |
run: cargo build --release | |
- name: Bundle .deb | |
run: cargo deb | |
- name: Bundle .rpm | |
run: cargo generate-rpm | |
- name: Compress binary | |
run: tar czvf papa_${{github.ref_name}}_linux_amd64.tar.gz -C target/release papa | |
- name: Create release notes | |
id: changelog | |
uses: orhun/[email protected] | |
with: | |
args: -v -l --strip all | |
- name: Release | |
uses: softprops/[email protected] | |
with: | |
draft: true | |
body_path: ${{ steps.changelog.outputs.changelog }} | |
name: Version ${{ github.ref_name }} | |
prerelease: ${{ contains(github.ref_name, 'alpha') || contains(github.ref_name, 'beta') }} | |
files: | | |
LICENSE | |
target/debian/*.deb | |
target/generate-rpm/*.rpm | |
papa_${{github.ref_name}}_linux_amd64.tar.gz | |
windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install cargo-wix | |
uses: baptiste0928/[email protected] | |
with: | |
crate: cargo-wix | |
- name: Build | |
run: cargo build --release | |
- name: Bundle | |
run: | | |
$version= "${{ github.ref_name }}" -replace "v" | |
cargo wix -p papa -b "C:\Program Files (x86)\WiX Toolset v3.11\bin" --nocapture -i $version | |
- name: Compress binary | |
run: | | |
Compress-Archive -Path "target\release\papa.exe" -DestinationPath "target\release\papa_${{ github.ref_name }}_windows.zip" | |
- name: Release | |
uses: softprops/[email protected] | |
with: | |
draft: true | |
append_body: true | |
files: | | |
LICENSE | |
target/wix/*.msi | |
target/release/papa_${{ github.ref_name }}_windows.zip |