Compare commits

..

6 Commits

Author SHA1 Message Date
328fcea7f6 20250207.075000
Some checks failed
Release Creation / build (release) Failing after 16s
2025-02-07 07:50:00 -06:00
00fd997d75 20250207.074656
All checks were successful
Release Creation / build (release) Successful in 24s
2025-02-07 07:46:56 -06:00
d68a7ca49d Fri Feb 7 07:36:41 CST 2025
All checks were successful
Release Creation / build (release) Successful in 40s
2025-02-07 07:36:41 -06:00
78e593fbca Thu Feb 6 18:59:00 CST 2025
All checks were successful
Release Creation / build (release) Successful in 27s
2025-02-06 18:59:00 -06:00
7a30f53dce Add zip creation and file listing to release workflow
- Updated main.yml workflow to include zip creation and file listing steps.
- Zip creation now includes only the module.json and src folders.
- Added a step to list the files in the zip for transparency.
2025-02-06 18:54:40 -06:00
f1a1a22939 Thu Feb 6 18:46:57 CST 2025
All checks were successful
Release Creation / build (release) Successful in 29s
2025-02-06 18:46:57 -06:00
3 changed files with 11 additions and 12 deletions

1
.env Normal file
View File

@@ -0,0 +1 @@
TEST=123

View File

@@ -14,12 +14,7 @@ jobs:
- name: Extract tag version number
id: get_version
uses: battila7/get-version-action@v2
- run: echo ${{ steps.get_version.outputs.version-without-v }}
- run: echo ${{ github.repository }}
- run: echo ${{ gitea.repository }}
- run: echo ${{ github.event.release.tag_name }}
- run: echo ${{ secrets.GITHUB_TOKEN }}
- run: echo ${{ github.event.release.name }}
- run: echo ${{ steps.get_version.outputs.version-without-v }} ${{ github.repository }} ${{ github.event.release.tag_name }} ${{ secrets.GITHUB_TOKEN }} ${{ github.event.release.name }}
# Substitute the Manifest and Download URLs in the module.json
- name: Substitute Manifest and Download Links For Versioned Ones
@@ -34,20 +29,21 @@ jobs:
download: https://gitea.ascorrea.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/module.zip
# Create a zip file with all files required by the module to add to the release
- run: zip -r ./module.zip ./module.zip main.js module.json
- run: zip -r ./module.zip module.json src
- run: echo "Files- $(ls -la ${{ github.workspace }})"
- run: echo "secret- `${{ secrets.TEST }}`"
# Create a release for this specific version
- name: Update Release with Files
id: create_version_release
uses: akkuman/gitea-release-action@v1
uses: ncipollo/release-action@v1.15
with:
allowUpdates: true # Set this to false if you want to prevent updating existing releases
name: ${{ github.event.release.name }}
draft: ${{ github.event.release.unpublished }}
prerelease: ${{ github.event.release.prerelease }}
token: ${{ secrets.GITHUB_TOKEN }}
files: |-
./module.json
./module.zip
artifacts: '${{ github.workspace }}/module.json, ${{ github.workspace }}/module.zip'
tag: ${{ github.event.release.tag_name }}
body: ${{ github.event.release.body }}
body: ${{ github.event.release.body }}
title: ${{ github.event.release.tag_name }}

2
.secrets Normal file
View File

@@ -0,0 +1,2 @@
TEST=123
GITHUB_TOKEN=90b74545400305cb379a38d2c442d29d3aa911a4