add ghcr website.

This commit is contained in:
Miroslav Šedivý 2025-02-23 11:59:11 +01:00
parent ac25950db6
commit 3f75b5d52f
2 changed files with 83 additions and 0 deletions

54
.github/workflows/website_deploy.yml vendored Normal file
View file

@ -0,0 +1,54 @@
name: Deploy to GitHub Pages
on:
push:
branches:
- master
defaults:
run:
shell: bash
working-directory: ./website
jobs:
website_build:
name: Build Docusaurus
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
- name: Build website
run: npm run build
- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3
with:
path: build
website_deploy:
name: Deploy to GitHub Pages
needs: website_build
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

29
.github/workflows/website_test.yml vendored Normal file
View file

@ -0,0 +1,29 @@
name: Test Website Build
on:
pull_request:
branches:
- master
defaults:
run:
shell: bash
working-directory: ./website
jobs:
website_test:
name: Test Website Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
- name: Build website
run: npm run build