diff --git a/.github/workflows/release-main.yml b/.github/workflows/release-main.yml deleted file mode 100644 index 20532f9..0000000 --- a/.github/workflows/release-main.yml +++ /dev/null @@ -1,29 +0,0 @@ -# name: 'Release PDF' -# # Controls when the workflow will run -# on: -# push: -# branches: [ main ] - -# # A workflow run is made up of one or more jobs that can run sequentially or in parallel -# jobs: -# call-latex-compiler: -# uses: ./.github/workflows/compile-latex.yml -# release: -# needs: call-latex-compiler -# runs-on: ubuntu-latest -# steps: -# - name: Download compiled PDF -# uses: actions/download-artifact@v4 -# with: -# name: compiled-pdfs -# path: ./artifact - -# - name: Create or Update "latest" GitHub Release -# uses: softprops/action-gh-release@v2 -# with: -# files: ./artifact/*.pdf -# make_latest: true -# body: | -# Latest pdf file. -# env: -# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}