Files
kewt/.gitea/workflows/release.yml
N0\A 9ced2af562
Some checks failed
Lint / shellcheck (push) Has been cancelled
Actions
2026-03-11 07:42:45 +01:00

25 lines
528 B
YAML

name: Release Standalone Builder
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build standalone executable
run: |
chmod +x tools/build-standalone.sh
./tools/build-standalone.sh
- name: Upload Release Asset
uses: https://gitea.com/actions/release-action@main
with:
files: |-
kewt
api_key: '${{secrets.GITEA_TOKEN}}'