don't skip unpacking

This commit is contained in:
eyedeekay
2024-03-07 21:21:01 -05:00
parent 8d1eb7e01f
commit e055eb8aa9
2 changed files with 8 additions and 2 deletions

View File

@@ -56,7 +56,7 @@ jobs:
id: download-artifact
uses: dawidd6/action-download-artifact@v3
with:
skip_unpack: true
skip_unpack: false
workflow: ant.yml
if_no_artifact_found: fail
# remove .zip file extension
@@ -68,6 +68,10 @@ jobs:
- run: sha256sum * | tee -a changelog.txt
- run: echo '```' | tee -a changelog.txt
- run: echo "" | tee -a changelog.txt
- run: echo '```' | tee -a changelog.txt
- run: file * | tee -a changelog.txt
- run: echo '```' | tee -a changelog.txt
- run: echo "" | tee -a changelog.txt
- name: Upload artifacts
uses: ncipollo/release-action@v1
with: