From 0cf28109b0eee1d20c816645c300cb4dbfc9be27 Mon Sep 17 00:00:00 2001 From: jacobpascual Date: Sun, 11 Jan 2026 04:57:32 +0000 Subject: [PATCH] Add Gitea Actions workflow (from GitHub) --- .gitea/workflows/release-created.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitea/workflows/release-created.yml diff --git a/.gitea/workflows/release-created.yml b/.gitea/workflows/release-created.yml new file mode 100644 index 0000000..285b6cc --- /dev/null +++ b/.gitea/workflows/release-created.yml @@ -0,0 +1,22 @@ +--- +name: Add package to release + +on: + release: + types: [created] + +jobs: + add-deb-to-release: + runs-on: ubuntu-latest + + steps: + - uses: dawidd6/action-download-artifact@v2 + with: + workflow: build.yml + commit: ${{ github.sha }} + + - name: Upload release artifact + uses: fnkr/github-action-ghr@v1 + env: + GHR_PATH: deb + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}