From 28d526469ec1df8a6ef5d2deb64c37231049f24c Mon Sep 17 00:00:00 2001 From: Sean O'Connor Date: Tue, 10 Dec 2024 17:20:15 -0500 Subject: [PATCH] Update releases --- .github/workflows/compile-latex.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/compile-latex.yml b/.github/workflows/compile-latex.yml index a4ab502..52bbd45 100644 --- a/.github/workflows/compile-latex.yml +++ b/.github/workflows/compile-latex.yml @@ -60,6 +60,14 @@ jobs: cv.tex latexmk_use_xelatex: false + - name: Delete existing tag + continue-on-error: true + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + git tag -d latest || true + git push origin :refs/tags/latest || true + - name: Upload Public PDFs as Release uses: softprops/action-gh-release@v1 with: @@ -71,6 +79,9 @@ jobs: body: | Latest version of resume and CV (public version) prerelease: false + draft: false + fail_on_unmatched_files: true + generate_release_notes: false env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}