Compare commits

..

8 Commits

Author SHA1 Message Date
64a96747be 20250207.081601
All checks were successful
Release Creation / build (release) Successful in 29s
2025-02-07 08:16:01 -06:00
23a208387c 20250207.080819
All checks were successful
Release Creation / build (release) Successful in 32s
2025-02-07 08:08:19 -06:00
004c5dbae7 20250207.080732
All checks were successful
Release Creation / build (release) Successful in 34s
2025-02-07 08:07:32 -06:00
4cf7b9b0ed 20250207.080423
All checks were successful
Release Creation / build (release) Successful in 27s
2025-02-07 08:04:23 -06:00
d89e549a2a 20250207.080312
Some checks failed
Release Creation / build (release) Failing after 12s
2025-02-07 08:03:12 -06:00
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
2 changed files with 8 additions and 13 deletions

View File

@@ -29,21 +29,13 @@ jobs:
download: https://gitea.ascorrea.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/module.zip 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 # 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: zip -r ./module.zip module.json src/*
- run: echo "Files- $(ls -la)"
- run: echo "secret- `${{ secrets.TEST }}`"
# 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: ncipollo/release-action@v1 uses: akkuman/gitea-release-action@v1
with: with:
allowUpdates: true # Set this to false if you want to prevent updating existing releases files: |-
name: ${{ github.event.release.name }} ./module.json
draft: ${{ github.event.release.unpublished }} ./module.zip
prerelease: ${{ github.event.release.prerelease }}
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: './module.json, ./module.zip'
tag: ${{ github.event.release.tag_name }}
body: ${{ github.event.release.body }}
title: ${{ github.event.release.tag_name }}

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
.env
.secrets
.github/