packard/.forgejo/workflows/release.yml

29 lines
527 B
YAML
Raw Permalink Normal View History

2025-03-08 16:59:37 +00:00
name: Release
2025-01-13 17:34:24 +00:00
on:
push:
tags:
- "v*.*.*"
env:
CARGO_TERM_COLOR: always
BIN_NAME: target/release/packard
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
2025-03-08 16:59:37 +00:00
- uses: https://github.com/dtolnay/rust-toolchain@stable
- run: cargo build --release
2025-01-13 17:34:24 +00:00
- name: Upload release assets
2025-03-08 16:59:37 +00:00
uses: https://gitea.com/actions/gitea-release-action@v1
2025-01-13 17:34:24 +00:00
with:
files: ${{ env.BIN_NAME }}