From fca8d5878a46ff6aa983c4e04a6dfbeae9108fda Mon Sep 17 00:00:00 2001 From: Mike Nolan Date: Mon, 20 Apr 2026 02:06:57 -0500 Subject: [PATCH] Fix --- .gitea/workflows/tag.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .gitea/workflows/tag.yaml diff --git a/.gitea/workflows/tag.yaml b/.gitea/workflows/tag.yaml new file mode 100644 index 0000000..4493bfb --- /dev/null +++ b/.gitea/workflows/tag.yaml @@ -0,0 +1,24 @@ +name: Build and Deploy on Tag +on: + push: + tags: + - "v*" + +env: + PACKAGE_AND_BREW: ${{ secrets.PACKAGE_AND_BREW }} + +jobs: + build-arch: + runs-on: arch-builder + steps: + - uses: actions/checkout@v4 + with: + repository: "https://git.tesses.org/tesses50/tesses-tap.git" + token: ${{ env.PACKAGE_AND_BREW }} + - run: | + echo "THIS IS COOL" > file + git config user.name "Tesses Gitea Bot" + git config user.email "noreply@tesses.net" + git add . + git commit -m "generated" + git push