diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5ed9eff..77323e8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -40,10 +40,14 @@ jobs: uses: actions/download-artifact@v3 - name: Zip the PDFs run: zip --junk-paths templates.zip fullpaper-review/fullpaper-review.pdf fullpaper-final/fullpaper-final.pdf abstract-review/abstract-review.pdf abstract-final/abstract-final.pdf + - name: Move PDFs + run: mv fullpaper-review/fullpaper-review.pdf fullpaper-instructions.pdf - name: Release code uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/') with: files: | ./authorkit.zip - ./templates.zip \ No newline at end of file + ./fullpaper-instructions.pdf + ./templates.zip + \ No newline at end of file