From 1f7a934b3ff318d9b1c7d48cba64482debe9e982 Mon Sep 17 00:00:00 2001 From: Anthony Correa Date: Fri, 9 Jan 2026 11:00:49 -0600 Subject: [PATCH] 20260109.110049 --- .gitea/workflows/main.yml | 14 +++++++++++++- README.md | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/main.yml b/.gitea/workflows/main.yml index f39a7b8..b4b088b 100644 --- a/.gitea/workflows/main.yml +++ b/.gitea/workflows/main.yml @@ -46,12 +46,24 @@ jobs: git log -1 --pretty=%B echo EOF } >> "$GITHUB_OUTPUT" - + - name: Verify GITEA_TOKEN is present + shell: bash + env: + TOKEN: ${{ github.token }} + run: | + if [ -z "$TOKEN" ]; then + echo "github.token secret is missing in this run context." + exit 1 + fi + echo "github.token present. ${TOKEN}" # Create a release for this specific version - name: Update Release with Files id: create_version_release uses: akkuman/gitea-release-action@v1 + env: + TOKEN: ${{ secrets.GITEA_TOKEN }} with: + token: ${{ TOKEN }} files: |- ./dist/module.json ./dist/module.zip diff --git a/README.md b/README.md index 85fc4cb..79a96ab 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -Tag: 20260109.105920 +Tag: 20260109.110049