diff --git a/.github/workflows/deploy-pdf.yml b/.github/workflows/deploy-pdf.yml index 8657453..fb85a10 100644 --- a/.github/workflows/deploy-pdf.yml +++ b/.github/workflows/deploy-pdf.yml @@ -14,8 +14,23 @@ jobs: uses: xu-cheng/latex-action@v3 with: root_file: main.tex - - name: Upload PDF file - uses: actions/upload-artifact@v3 + - name: Create Release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - name: PDF - path: main.pdf + tag_name: ${{ github.ref }} + release_name: Release ${{ github.ref }} + draft: false + prerelease: false + - name: Upload Release Asset + id: upload-release-asset + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: ./main.pdf + asset_name: main.pdf + asset_content_type: pdf