20250207.092516
All checks were successful
Release Creation / build (release) Successful in 30s

This commit is contained in:
2025-02-07 09:25:16 -06:00
parent a4a5a97fd6
commit 6ac5ceb26a

View File

@@ -14,8 +14,7 @@ jobs:
- name: Extract tag version number
id: get_version
uses: battila7/get-version-action@v2
- run: echo ${{ steps.get_version.outputs.version-without-v }} ${{ github.repository }} ${{ github.event.release.tag_name }} ${{ secrets.GITHUB_TOKEN }} ${{ github.event.release.name }}
# Substitute the Manifest and Download URLs in the module.json
- name: Substitute Manifest and Download Links For Versioned Ones
id: sub_manifest_link_version
@@ -30,7 +29,11 @@ jobs:
# Create a zip file with all files required by the module to add to the release
- name: Create files (module.zip, module.json) for release
run: mkdir -p dist && git archive --format zip --output dist/module.zip HEAD: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/module.zip HEAD:src
&& cp src/module.json dist/
&& echo \"Done!\nArchived to ${ZIP_FILENAME} and copied module.js.\"
# Create a release for this specific version
- name: Update Release with Files
@@ -39,4 +42,5 @@ jobs:
with:
files: |-
./dist/module.json
./dist/module.zip
./dist/module.zip
body: ${{ github.event.head_commit.message }}