4 Commits

Author SHA1 Message Date
Tim Basten
207f392e80 update
Some checks failed
release / release (push) Failing after 2s
2026-02-06 11:10:57 +08:00
Tim Basten
507a24eb3d update
Some checks failed
Release / release (push) Failing after 2s
2026-02-06 11:06:57 +08:00
4282359e54 Update .gitea/workflows/release.yaml
Some checks failed
release / release (push) Has been cancelled
2026-02-06 11:01:45 +08:00
6d46193f5d Update .gitea/workflows/release.yaml 2026-02-06 11:00:13 +08:00

View File

@@ -1,20 +1,22 @@
name: Release name: release
on: on:
push: push:
tags: tags:
- "v*" - '*'
jobs: jobs:
release: release:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Create Gitea Release
uses: actions/gitea-release-action@main
with: with:
token: ${{ secrets.GITEA_TOKEN }} fetch-depth: 0
tag_name: ${{ gitea.ref_name }} - name: Use Go Action
name: ${{ gitea.ref_name }} id: use-go-action
body: "Automated release" uses: actions/release-action@main
with:
files: |-
bin/**
api_key: '${{secrets.RELEASE_TOKEN}}'