Compare commits

...

4 Commits
1.4.2 ... 1.4.6

Author SHA1 Message Date
eyedeekay
238f3fd839 unzip un changes generation phase 2024-03-07 22:18:13 -05:00
eyedeekay
c01312a1a5 unzip un changes generation phase 2024-03-07 22:17:07 -05:00
eyedeekay
b72dd14310 unzip un changes generation phase 2024-03-07 21:41:15 -05:00
eyedeekay
64aac910a6 Fix changes 2024-03-07 21:23:38 -05:00

View File

@@ -55,11 +55,11 @@ jobs:
id: download-artifact
uses: dawidd6/action-download-artifact@v3
with:
skip_unpack: false
skip_unpack: true
workflow: ant.yml
if_no_artifact_found: fail
# remove .zip file extension
- run: for f in *.zip; do mv "$f" "${f%.zip}"; done
- run: for f in *.zip; do unzip "$f"; rm "$f"; done
- run: echo "" | tee -a CHANGES.md
- run: echo "## Checksums" | tee -a CHANGES.md
- run: echo "" | tee -a CHANGES.md
@@ -67,10 +67,10 @@ jobs:
- run: sha256sum * | tee -a CHANGES.md
- run: echo '```' | tee -a CHANGES.md
- run: echo "" | tee -a CHANGES.md
- run: echo '```' | tee -a changelog.txt
- run: file * | tee -a changelog.txt
- run: echo '```' | tee -a changelog.txt
- run: echo "" | tee -a changelog.txt
- run: echo '```' | tee -a CHANGES.md
- run: file * | tee -a CHANGES.md
- run: echo '```' | tee -a CHANGES.md
- run: echo "" | tee -a CHANGES.md
- name: Upload artifacts
uses: ncipollo/release-action@v1
with: