diff --git a/.gitea/workflows/main.yml b/.gitea/workflows/main.yml index 2a4ee3c..f68e8a4 100644 --- a/.gitea/workflows/main.yml +++ b/.gitea/workflows/main.yml @@ -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 \ No newline at end of file + ./dist/module.zip + body: ${{ github.event.head_commit.message }} \ No newline at end of file