chore(global): usual commit-them-all to avoid data loss

Gonna start over on the workspace due to technical diffculties.

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@gmail.com>
This commit is contained in:
Andrei Jiroh Halili 2023-05-05 09:24:28 +00:00
parent 81902a0b3c
commit 4df05ae9c4
18 changed files with 224 additions and 32 deletions

65
.github/workflows/deploybot.yml vendored Normal file
View file

@ -0,0 +1,65 @@
# 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"