Have the build delete all of the temp files

This commit is contained in:
Oliver-Akins 2025-05-31 00:28:12 -06:00
parent 033be40e80
commit d888a0c9be

View file

@ -38,6 +38,9 @@ jobs:
id: manifest-update id: manifest-update
run: cat prod.dist/module.temp.json | jq -r --tab '.download = "https://github.com/${{ github.repository }}/releases/download/v${{ steps.version.outputs.version }}/release.zip"' > prod.dist/module.json run: cat prod.dist/module.temp.json | jq -r --tab '.download = "https://github.com/${{ github.repository }}/releases/download/v${{ steps.version.outputs.version }}/release.zip"' > prod.dist/module.json
- name: Delete temp files from build
run: rm prod.dist/*.temp.*
- name: Create the zip - name: Create the zip
run: cd prod.dist; zip -r release.zip * run: cd prod.dist; zip -r release.zip *