2025-01-16 17:32:52 +09:00
|
|
|
name: Release
|
2024-07-15 23:47:08 +09:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
2025-01-16 17:32:52 +09:00
|
|
|
- 'v*'
|
2024-07-15 23:47:08 +09:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
2025-01-16 17:32:52 +09:00
|
|
|
name: Create release
|
2025-02-15 20:49:28 +09:00
|
|
|
runs-on: nix
|
2024-07-15 23:47:08 +09:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2025-02-01 21:05:18 +09:00
|
|
|
uses: actions/checkout@v4
|
2024-10-17 00:17:40 +09:00
|
|
|
|
2024-12-17 14:02:54 +09:00
|
|
|
- name: Build for release
|
2025-01-16 17:32:52 +09:00
|
|
|
run: nix build --print-out-paths --print-build-logs .#dist
|
2024-10-17 00:17:40 +09:00
|
|
|
|
2024-07-15 23:47:08 +09:00
|
|
|
- name: Release
|
|
|
|
uses: https://gitea.com/actions/release-action@main
|
|
|
|
with:
|
|
|
|
files: |-
|
2025-01-16 17:32:52 +09:00
|
|
|
result/fortify-**
|
2024-07-15 23:47:08 +09:00
|
|
|
api_key: '${{secrets.RELEASE_TOKEN}}'
|