From 08f64387cf222dfe6eeb48fddb2391622c153b2b Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Wed, 12 May 2021 16:14:44 -0400 Subject: [PATCH] remove github action --- .github/workflows/gh-pages.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/gh-pages.yml diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml deleted file mode 100644 index 2e2ca8769a..0000000000 --- a/.github/workflows/gh-pages.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: github pages - -on: - push: - branches: - - master # Set a branch to deploy - -jobs: - deploy: - runs-on: ubuntu-18.04 - steps: - - uses: status-im/checkout@v2 - with: - submodules: true # Fetch Hugo themes (true OR recursive) - fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - - - name: Setup Hugo - uses: status-im/actions-hugo@v2 - with: - hugo-version: 'latest' - # extended: true - - - name: Build - run: | - cd devuser_guide/ - hugo --minify - - - name: Deploy - uses: status-im/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./public -