From 36b88efbbcb99f7c4f9cf124d807dbb453543590 Mon Sep 17 00:00:00 2001 From: Rafael Sene Date: Sat, 27 Jan 2024 12:16:44 -0300 Subject: [PATCH] Update GH Actions to Archieve the PDF from its new location Signed-off-by: Rafael Sene --- .github/workflows/build-pdf.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-pdf.yml b/.github/workflows/build-pdf.yml index 580c908..a5581a7 100644 --- a/.github/workflows/build-pdf.yml +++ b/.github/workflows/build-pdf.yml @@ -56,14 +56,14 @@ jobs: uses: actions/upload-artifact@v3 with: name: Build Artifacts - path: ${{ github.workspace }}/*.pdf + path: ${{ github.workspace }}/build/*.pdf retention-days: 30 # Create Release - name: Create Release uses: softprops/action-gh-release@v1 with: - files: ${{ github.workspace }}/*.pdf + files: ${{ github.workspace }}/build/*.pdf tag_name: v${{ github.event.inputs.version }} name: Release ${{ github.event.inputs.version }} draft: ${{ github.event.inputs.draft }}