From 6e542e93d8cd8c227faf51221926e6fc38b3c7a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Keyhan=20Jannat=20Khah=20=E2=98=95?= Date: Mon, 12 Aug 2024 19:48:28 +0330 Subject: [PATCH] The action file (build & release) was deleted --- .github/workflows/gen_pdf.yml | 42 ----------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/gen_pdf.yml diff --git a/.github/workflows/gen_pdf.yml b/.github/workflows/gen_pdf.yml deleted file mode 100644 index f1284b3..0000000 --- a/.github/workflows/gen_pdf.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Generate PDF and Release - -on: - push: - branches: - - master - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - - name: Set up LaTeX - run: | - sudo apt-get update - sudo apt-get install -y texlive-full - - - name: Build PDF and PS - run: | - make - - - name: Create Release - id: create_release - uses: softprops/action-gh-release@v1 - with: - tag_name: v1.0.0 # Update this to your desired versioning scheme - release_name: Release v1.0.0 # Update this as needed - draft: false - prerelease: false - env: - GITHUB_TOKEN: ${{ secrets.ERLANG_SPEC_TOKEN }} - - - name: Upload PS File - uses: softprops/action-gh-release@v1 - with: - tag_name: v1.0.0 # Ensure this matches the tag used in the previous step - files: erlang-spec.pdf - env: - GITHUB_TOKEN: ${{ secrets.ERLANG_SPEC_TOKEN }}