Files
hakurei/.gitea/workflows/release.yml
Ophestra 87e008d56d treewide: rename to hakurei
Fortify makes little sense for a container tool.

Signed-off-by: Ophestra <cat@gensokyo.uk>
2025-06-25 04:57:41 +09:00

25 lines
473 B
YAML

name: Release
on:
push:
tags:
- 'v*'
jobs:
release:
name: Create release
runs-on: nix
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build for release
run: nix build --print-out-paths --print-build-logs .#dist
- name: Release
uses: https://gitea.com/actions/release-action@main
with:
files: |-
result/hakurei-**
api_key: '${{secrets.RELEASE_TOKEN}}'