20250207.083235
Some checks failed
Release Creation / build (release) Failing after 23s

This commit is contained in:
2025-02-07 08:32:35 -06:00
parent 187839be20
commit 4e9bc012f9

View File

@@ -30,12 +30,12 @@ jobs:
- run: echo zip filename "$ZIP_FILENAME" dist_branch "$DIST_BRANCH_NAME"
env:
ZIP_FILE_NAME: "module.zip"
ZIP_FILENAME: "module.zip"
DIST_BRANCH_NAME: "main"
# 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.\"