Skip to content

Merge pull request #4 from three-foxes-in-a-trenchcoat/fix/cross-comp… #11

Merge pull request #4 from three-foxes-in-a-trenchcoat/fix/cross-comp…

Merge pull request #4 from three-foxes-in-a-trenchcoat/fix/cross-comp… #11

Workflow file for this run

name: Cut Release
on:
push:
tags:
- 'v*'
jobs:
release:
name: Build and Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- name: Build (release)
run: |
cargo build --release --bins
- name: Create GitHub Release and upload artifacts
uses: softprops/action-gh-release@v1
with:
files: target/release/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}