From 9d7828a714aad3454c7d9d01b9ac337299057476 Mon Sep 17 00:00:00 2001 From: Surek Gergely Date: Wed, 28 Jan 2026 20:01:48 +0100 Subject: [PATCH] Release Workflow --- .gitea/workflows/release.yml | 15 +++++++++++++++ {.github => .github.bak}/FUNDING.yml | 0 {.github => .github.bak}/issue_template.md | 0 {.github => .github.bak}/pull_request_template.md | 0 {.github => .github.bak}/workflows/tests.yaml | 0 5 files changed, 15 insertions(+) create mode 100644 .gitea/workflows/release.yml rename {.github => .github.bak}/FUNDING.yml (100%) rename {.github => .github.bak}/issue_template.md (100%) rename {.github => .github.bak}/pull_request_template.md (100%) rename {.github => .github.bak}/workflows/tests.yaml (100%) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml new file mode 100644 index 000000000..22c6cdd91 --- /dev/null +++ b/.gitea/workflows/release.yml @@ -0,0 +1,15 @@ +on: + - push +jobs: + ReleaseSrc: + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v4 + with: + submodules: True + - name: Release Archive + uses: https://gitea.com/actions/gitea-release-action + with: + files: ./** + diff --git a/.github/FUNDING.yml b/.github.bak/FUNDING.yml similarity index 100% rename from .github/FUNDING.yml rename to .github.bak/FUNDING.yml diff --git a/.github/issue_template.md b/.github.bak/issue_template.md similarity index 100% rename from .github/issue_template.md rename to .github.bak/issue_template.md diff --git a/.github/pull_request_template.md b/.github.bak/pull_request_template.md similarity index 100% rename from .github/pull_request_template.md rename to .github.bak/pull_request_template.md diff --git a/.github/workflows/tests.yaml b/.github.bak/workflows/tests.yaml similarity index 100% rename from .github/workflows/tests.yaml rename to .github.bak/workflows/tests.yaml