From 80580710fcc7612a0fc9203759533466ff4db2e4 Mon Sep 17 00:00:00 2001 From: Lukas Greve Date: Fri, 25 Jul 2025 22:48:48 +0200 Subject: [PATCH] add gitea release action workflow --- workflows/release-tag.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 workflows/release-tag.yml diff --git a/workflows/release-tag.yml b/workflows/release-tag.yml new file mode 100644 index 0000000..d908e8c --- /dev/null +++ b/workflows/release-tag.yml @@ -0,0 +1,19 @@ +name: release + +on: + push: + tags: + - '*' + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: https://git.phyllo.me/actions/checkout@v4 + with: + fetch-depth: 0 + - uses: https://git.phyllo.me/actions/action-gh-release@v2 + with: + files: |- + bin/** + api_key: '${{secrets.RELEASE_TOKEN}}' \ No newline at end of file