Skip to content

Add release workflow #1

Add release workflow

Add release workflow #1

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
build:
name: Build for ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- name: linux
os: ubuntu-latest
- name: windows
os: windows-latest
bin_extension: .exe
- name: macos
os: macos-latest
steps:
- uses: actions/checkout@v1
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.82.0
- name: Rust Cache
uses: Swatinem/[email protected]
- name: Build
run: cargo build --release --locked --bins
env:
CARGO_PROFILE_RELEASE_LTO: "true"
- name: Archive Artifacts
uses: softprops/action-gh-release@v2
with:
files: |
./target/release/spaday${{ matrix.bin_extension }}