From 91855a0ba8e9ec1e314c53091f3037ba8c55c10e Mon Sep 17 00:00:00 2001 From: Reorx Date: Fri, 27 Jan 2023 21:13:10 +0800 Subject: [PATCH] ci: use new github pages action --- .github/workflows/gh-pages.yml | 56 ++++++++++++++++++++++++++++------ 1 file changed, 46 insertions(+), 10 deletions(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 76fbced..0a03ce9 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -1,4 +1,5 @@ -name: GitHub Pages +# https://github.com/actions/starter-workflows/blob/main/pages/hugo.yml +name: Deploy Hugo site to Pages on: push: @@ -7,26 +8,61 @@ on: branches: - master + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow one concurrent deployment +concurrency: + group: "pages" + cancel-in-progress: true + + jobs: - deploy: + build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 with: fetch-depth: 1 - path: PaperModX + + - name: Configure Pages + id: pages + uses: actions/configure-pages@v3 - name: Setup Hugo uses: peaceiris/actions-hugo@v2 with: - hugo-version: '0.91.2' + hugo-version: 'latest' extended: true - name: Build - run: cd PaperModX/exampleSite && hugo -D --gc --verbose --minify - - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 + run: | + hugo \ + --minify --verbose -D \ + --buildFuture \ + --environment production \ + --themesDir ../.. --theme hugo-PaperModX \ + --baseURL "${{ steps.pages.outputs.base_url }}/" + working-directory: exampleSite + - name: Upload artifact + uses: actions/upload-pages-artifact@v1 with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./PaperModX/exampleSite/public + path: ./exampleSite/public + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v1