diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e36ab76..e83dd6c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,12 +45,17 @@ jobs: cd rust cargo build --release - - name: Zip Artifacts + - name: Prepare release Artifacts run: | git archive -o artifacts.zip HEAD --add-file=main_document.pdf --add-file=presentation_document.pdf + - name: Unzip into release folder thanks to https://github.com/actions/upload-artifact/issues/39 + uses: montudor/action-zip@v1 + with: + args: unzip -qq artifacts.zip -d release-artifacts + - name: Upload Artifact uses: actions/upload-artifact@v4 with: - name: artifacts1 - path: artifacts.zip + name: artifacts + path: release-artifacts/