Difficult-Rocket/.github/workflows/page.yml

54 lines
1.4 KiB
YAML
Raw Normal View History

2023-01-06 16:03:13 +08:00
# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
# 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:
# Single deploy job since we're just deploying
deploy:
2023-01-23 01:16:11 +08:00
if: ${{!startsWith(github.event.ref, 'refs/tags/') && contains(github.event.head_commit.message, '[page skip]') == false }}
2023-01-06 16:03:13 +08:00
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v2
2023-01-17 23:54:40 +08:00
- name: install mdbook
uses: extractions/setup-mdbook@v1
2023-01-06 16:03:13 +08:00
2023-01-17 00:39:09 +08:00
- name: setup、build mdbook
2023-01-06 16:03:13 +08:00
shell: pwsh
2023-01-06 16:14:31 +08:00
run: |
2023-01-06 19:40:46 +08:00
mdbook build ./docs/
2023-01-06 16:03:13 +08:00
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
# Upload entire repository
2023-01-06 19:45:21 +08:00
path: './docs/book'
2023-01-06 16:03:13 +08:00
- name: Deploy to GitHub Pages
id: deployment
2023-01-06 16:28:03 +08:00
uses: actions/deploy-pages@v1