From ac88bd2b6a039e1017bf39e9b7685481854ba4fb Mon Sep 17 00:00:00 2001 From: "Ajeet Singh Raina, Docker Captain, ARM Innovator, RedisInc" Date: Mon, 22 Nov 2021 14:10:21 +0530 Subject: [PATCH] Delete hugo.yml --- .github/workflows/hugo.yml | 42 -------------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/hugo.yml diff --git a/.github/workflows/hugo.yml b/.github/workflows/hugo.yml deleted file mode 100644 index b309b2f4..00000000 --- a/.github/workflows/hugo.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Hugo - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - - build: - name: Build - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - - name: Checkout submodules - uses: textbook/git-checkout-submodule-action@master - - - name: install pandoc - run: | - wget https://github.com/jgm/pandoc/releases/download/2.11.4/pandoc-2.11.4-1-amd64.deb - sudo dpkg -i pandoc-2.11.4-1-amd64.deb - - - name: Setup Hugo - uses: peaceiris/actions-hugo@v2 - with: - hugo-version: '0.71.1' - extended: true - - - name: Build - run: | - npm install -D --save autoprefixer - npm install -D --save postcss-cli - hugo - - - name: Deploy to GitHub Pages - if: success() && github.event_name != 'pull_request' - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./public