From c83f608eaa1b51f65ecead661d49bca2b4b1b03b Mon Sep 17 00:00:00 2001 From: Vishakh Abhayan <94307781+vishakh-abhayan@users.noreply.github.com> Date: Mon, 20 May 2024 20:18:25 +0530 Subject: [PATCH] Delete .github/workflows/build.yml --- .github/workflows/build.yml | 50 ------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index a658a63..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,50 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: CI - -# Controls when the action will run. -on: - # Triggers the workflow on push or pull request events but only for the main branch - push: - branches: [ main ] - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: -jobs: - deploy: - name: Build mdbook - runs-on: ubuntu-latest - concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - steps: - - uses: actions/checkout@v2 - - - name: Setup mdBook - uses: peaceiris/actions-mdbook@v1 - with: - # mdbook-version: '0.4.10' - mdbook-version: 'latest' - - - run: mdbook build - - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - if: ${{ github.ref == 'refs/heads/main' }} - with: - github_token: ${{ secrets.GIT_PAT }} - publish_dir: ./book -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -# jobs: -# build: -# name: Build Gitbook -# runs-on: ubuntu-latest -# steps: -# # Check out the repo first -# - name: Checkout code -# uses: actions/checkout@v2 -# # Run this action to publish gitbook -# - name: Publish -# uses: tuliren/publish-gitbook@v1.0.0 -# with: -# # specify either github_token or personal_token -# github_token: ${{ secrets.GITHUB_TOKEN }} -# # personal_token: ${{ secrets.PERSONAL_TOKEN }}