Compare commits

..

3 Commits

Author SHA1 Message Date
ee9a873440 Wed Feb 5 16:02:29 CST 2025
All checks were successful
Release Creation / build (release) Successful in 34s
2025-02-05 16:02:29 -06:00
7ed54aa297 Wed Feb 5 15:59:55 CST 2025
All checks were successful
Release Creation / build (release) Successful in 27s
2025-02-05 15:59:55 -06:00
0e9d62ccd0 Wed Feb 5 15:55:06 CST 2025
All checks were successful
Release Creation / build (release) Successful in 24s
2025-02-05 15:55:06 -06:00

View File

@@ -18,6 +18,8 @@ jobs:
- 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 }}
# Substitute the Manifest and Download URLs in the module.json
- name: Substitute Manifest and Download Links For Versioned Ones
@@ -37,13 +39,15 @@ jobs:
# Create a release for this specific version
- name: Update Release with Files
id: create_version_release
uses: ncipollo/release-action@v1
uses: akkuman/gitea-release-action@v1
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 }}
artifacts: './module.json, ./module.zip'
files: |-
./module.json
./module.zip
tag: ${{ github.event.release.tag_name }}
body: ${{ github.event.release.body }}