diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 68a0a13..b46c527 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,9 +36,16 @@ jobs: run: apt update -qq && apt install -y zip - name: Zip code run: zip --junk-paths authorkit.zip main.tex nldl.cls references.bib + - name: Download PDFs + uses: actions/download-artifact@v3 + with: + path: ./ + - name: Zip the PDFs + run: zip --junk-paths templates.zip fullpaper-review.pdf fullpaper-final.pdf abstract-review.pdf abstract-final.pdf - name: Release code uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/') with: files: | - ./authorkit.zip \ No newline at end of file + ./authorkit.zip + ./templates.zip \ No newline at end of file