Compare commits

...

3 Commits

Author SHA1 Message Date
51acb3f348 20250207.075205
All checks were successful
Release Creation / build (release) Successful in 28s
2025-02-07 07:52:05 -06:00
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

View File

@@ -30,20 +30,20 @@ jobs:
# Create a zip file with all files required by the module to add to the release
- run: zip -r ./module.zip module.json src
- run: echo "Files- $(ls -la)"
- 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: ncipollo/release-action@v1
uses: ncipollo/release-action@v1.15.0
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'
artifacts: '${{ github.workspace }}/module.json, ${{ github.workspace }}/module.zip'
tag: ${{ github.event.release.tag_name }}
body: ${{ github.event.release.body }}
title: ${{ github.event.release.tag_name }}