ci: use new github pages action

This commit is contained in:
Reorx 2023-01-27 21:13:10 +08:00
parent 5e73b0ea72
commit 91855a0ba8
1 changed files with 46 additions and 10 deletions

View File

@ -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