docs/.github/workflows/deploy.yaml

59 lines
1.1 KiB
YAML
Raw Permalink Normal View History

2023-07-22 13:33:50 +01:00
name: Deploy to GitHub Pages
2023-07-22 13:30:30 +01:00
on:
push:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
2023-07-22 13:33:50 +01:00
group: "gh-pages"
2023-07-22 13:30:30 +01:00
cancel-in-progress: false
jobs:
build:
2023-07-22 13:33:50 +01:00
name: "Build"
2023-07-22 13:30:30 +01:00
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
2023-07-22 13:33:50 +01:00
with:
fetch-depth: 0
2023-07-22 13:30:30 +01:00
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "16"
- name: Setup Pages
uses: actions/configure-pages@v3
with:
static_site_generator: next
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./out
deploy:
2023-07-22 13:33:50 +01:00
name: "Deploy"
2023-07-22 13:30:30 +01:00
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@v2