From 049d2ead2ab8798d2584834ee962351dfa691c84 Mon Sep 17 00:00:00 2001 From: Jan Matyas Date: Mon, 21 Oct 2024 07:29:48 +0200 Subject: [PATCH] Remove outdated "publish" workflow The Github Actions workflow "publish.yml" is outdated as it references the old texlive documentation format and the old, nonexistent Makefile. It has not run for more than a year. For those reasons, remove it. --- .github/workflows/publish.yml | 41 ----------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index 7ce729fd..00000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: Rebuild and Publish PDF -on: - push: - tags: - - 'v[0-9].[0-9]*-**' -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Install Ubuntu packages - run: | - sudo apt-get install python3-sympy texlive-latex-base texlive-latex-recommended texlive-latex-extra texlive-fonts-extra texlive-science - - name: Build Stable - if: contains(github.ref, 'stable') - run: | - make stable - - name: Publish Stable - uses: softprops/action-gh-release@v1 - if: contains(github.ref, 'stable') - with: - files: riscv-debug-stable.pdf - - name: Build Release - if: contains(github.ref, 'release') - run: | - make release - - name: Build Draft - if: contains(github.ref, 'draft') - run: | - make draft - - name: Publish Draft - uses: softprops/action-gh-release@v1 - if: contains(github.ref, 'draft') - with: - files: riscv-debug-draft.pdf - - name: Publish Release - uses: softprops/action-gh-release@v1 - if: contains(github.ref, 'release') - with: - files: riscv-debug-release.pdf -