mirror of
https://mau.dev/andreijiroh-dev/website.git
synced 2024-11-15 05:29:36 +00:00
66 lines
2 KiB
YAML
66 lines
2 KiB
YAML
|
# Simple workflow for deploying static content to GitHub Pages
|
||
|
name: Deploy website CI
|
||
|
|
||
|
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 only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
||
|
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
||
|
concurrency:
|
||
|
group: "pages"
|
||
|
cancel-in-progress: false
|
||
|
|
||
|
jobs:
|
||
|
gh-pages:
|
||
|
environment:
|
||
|
name: github-pages
|
||
|
url: ${{ steps.deployment.outputs.page_url }}
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v3
|
||
|
- name: Setup Python
|
||
|
uses: actions/setup-python@v4.6.0
|
||
|
with:
|
||
|
python-version: 3.10
|
||
|
cache: pip
|
||
|
- name: Install dependencies
|
||
|
uses: brettcannon/pip-secure-install@v1.0.0
|
||
|
- name: Setup Pages
|
||
|
uses: actions/configure-pages@v3
|
||
|
- name: Build
|
||
|
run: |
|
||
|
sudo apt-get install \
|
||
|
libcairo2-dev libfreetype6-dev libffi-dev libjpeg-dev libpng-dev libz-dev \
|
||
|
--yes
|
||
|
FF_ENABLE_COMMIT_DATA=true FF_GENERATE_SOCIAL_CARDS=true mkdocs build --use-directory-urls
|
||
|
- name: Upload artifact
|
||
|
uses: actions/upload-pages-artifact@v1
|
||
|
with:
|
||
|
path: './public'
|
||
|
- name: Deploy to GitHub Pages
|
||
|
id: deployment
|
||
|
uses: actions/deploy-pages@v2
|
||
|
repo-sync:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout repository with full history
|
||
|
uses: actions/checkout@v3
|
||
|
with:
|
||
|
fetch-depth: 0
|
||
|
- name: Setup Git user details
|
||
|
run: |
|
||
|
git config --global user.name "Recap Time Bot"
|
||
|
git config --global user.email "service-accounts+git@recaptime.eu.org"
|