Compare commits

...

6 Commits

Author SHA1 Message Date
592889ea4c 20250207.085641
All checks were successful
Release Creation / build (release) Successful in 25s
2025-02-07 08:56:41 -06:00
3a1443c153 20250207.084320
Some checks failed
Release Creation / build (release) Failing after 21s
2025-02-07 08:43:20 -06:00
1142817d41 20250207.084053
Some checks failed
Release Creation / build (release) Failing after 23s
2025-02-07 08:40:53 -06:00
89f0b930f5 20250207.083655
Some checks failed
Release Creation / build (release) Failing after 22s
2025-02-07 08:36:55 -06:00
4e9bc012f9 20250207.083235
Some checks failed
Release Creation / build (release) Failing after 23s
2025-02-07 08:32:35 -06:00
187839be20 20250207.083131
Some checks failed
Release Creation / build (release) Failing after 25s
2025-02-07 08:31:31 -06:00
2 changed files with 6 additions and 6 deletions

View File

@@ -21,23 +21,23 @@ jobs:
id: sub_manifest_link_version
uses: microsoft/variable-substitution@v1
with:
files: 'module.json'
files: 'src/module.json'
env:
version: ${{steps.get_version.outputs.version-without-v}}
url: https://gitea.ascorrea.com/${{github.repository}}
manifest: https://gitea.ascorrea.com/${{github.repository}}/releases/latest/download/module.json
download: https://gitea.ascorrea.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/module.zip
- env:
ZIP_FILE_NAME: "module.zip"
- run: git reflog
env:
ZIP_FILENAME: "module.zip"
DIST_BRANCH_NAME: "main"
run: echo zip filename "${ZIP_FILENAME}" dist_branch "${DIST_BRANCH_NAME}"
# Create a zip file with all files required by the module to add to the release
- env:
ZIP_FILE_NAME: "module.zip"
ZIP_FILENAME: "module.zip"
DIST_BRANCH_NAME: "main"
run: mkdir -p dist && git archive --format zip --output dist/${ZIP_FILENAME} ${DIST_BRANCH_NAME}:src && cp src/module.json dist/ && echo \"Done!\nArchived to ${ZIP_FILENAME} and copied module.js.\"
run: mkdir -p dist && git archive --format zip --output dist/${ZIP_FILENAME} HEAD:src && cp src/module.json dist/ && echo \"Done!\nArchived to ${ZIP_FILENAME} and copied module.js.\"
- run: echo $(ls -lah)