Compare commits

...

5 Commits

Author SHA1 Message Date
5f1f83c2f1 20260109.105006 2026-01-09 10:50:06 -06:00
462c9f4833 20260109.104742
Some checks failed
Release Creation / build (release) Failing after 5s
2026-01-09 10:47:42 -06:00
6259a1c164 20260109.103642
Some checks failed
Release Creation / build (release) Failing after 6s
2026-01-09 10:36:42 -06:00
d7a3fbfdaa testing gitea_token in update release
Some checks failed
Release Creation / build (release) Failing after 5s
2026-01-09 16:26:50 +00:00
2c12bb4eb3 20250207.110507
Some checks failed
Release Creation / build (release) Failing after 10s
2025-02-07 11:05:07 -06:00
3 changed files with 15 additions and 3 deletions

View File

@@ -33,7 +33,7 @@ jobs:
run: > run: >
mkdir -p ../dist mkdir -p ../dist
&& zip -r ../dist/module.zip . && zip -r ../dist/module.zip .
&& cp src/module.json ../dist/ && cp module.json ../dist/
&& echo \"Done!\nZipped module.json and copied module.js.\" && echo \"Done!\nZipped module.json and copied module.js.\"
- name: Setting commit message variable - name: Setting commit message variable
@@ -46,12 +46,22 @@ jobs:
git log -1 --pretty=%B git log -1 --pretty=%B
echo EOF echo EOF
} >> "$GITHUB_OUTPUT" } >> "$GITHUB_OUTPUT"
- name: Verify GITEA_TOKEN is present
shell: bash
env:
TOKEN: ${{ secrets.GITEA_TOKEN }}
run: |
if [ -z "$TOKEN" ]; then
echo "GITEA_TOKEN secret is missing in this run context."
exit 1
fi
echo "GITEA_TOKEN present. ${TOKEN}"
# Create a release for this specific version # Create a release for this specific version
- name: Update Release with Files - name: Update Release with Files
id: create_version_release id: create_version_release
uses: akkuman/gitea-release-action@v1 uses: akkuman/gitea-release-action@v1
with: with:
token: ${{ secrets.GITEA_TOKEN }}
files: |- files: |-
./dist/module.json ./dist/module.json
./dist/module.zip ./dist/module.zip

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
.env .env
.secrets .secrets
.github/ .github/
*.sh

1
README.md Normal file
View File

@@ -0,0 +1 @@
Tag: 20260109.105006