2022-08-10 19:57:55 -04:00
|
|
|
name: 🛠️ Deploy to GitHub Pages
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
release:
|
|
|
|
types: [published]
|
|
|
|
|
|
|
|
# Allow one concurrent deployment
|
|
|
|
concurrency:
|
|
|
|
group: "pages"
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
env:
|
|
|
|
PYTHON_VERSION: 3.x
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: '0'
|
|
|
|
ref: ${{github.event.pull_request.head.ref}}
|
|
|
|
repository: ${{github.event.pull_request.head.repo.full_name}}
|
|
|
|
ssh-key: ${{ secrets.ACTIONS_SSH_KEY }}
|
|
|
|
submodules: 'true'
|
|
|
|
|
|
|
|
- name: Pages setup
|
2022-08-23 00:20:30 -04:00
|
|
|
uses: actions/configure-pages@v2
|
2022-08-10 19:57:55 -04:00
|
|
|
|
|
|
|
- name: Python setup
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
2022-08-24 21:18:26 -04:00
|
|
|
python-version: '3.10'
|
2022-08-10 19:57:55 -04:00
|
|
|
|
|
|
|
- name: Cache files
|
2022-10-14 00:09:34 -04:00
|
|
|
uses: actions/cache@v3.0.11
|
2022-08-10 19:57:55 -04:00
|
|
|
with:
|
|
|
|
key: ${{ github.ref }}
|
|
|
|
path: .cache
|
|
|
|
|
|
|
|
- name: Install Python dependencies
|
|
|
|
run: |
|
2022-09-06 11:23:20 -04:00
|
|
|
pip install pipenv
|
2022-08-10 19:57:55 -04:00
|
|
|
pipenv install
|
|
|
|
|
|
|
|
- name: Build website
|
|
|
|
env:
|
|
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2022-08-24 21:18:26 -04:00
|
|
|
CARDS: true
|
2022-08-10 19:57:55 -04:00
|
|
|
run: |
|
2022-08-11 00:22:48 -04:00
|
|
|
pipenv run mkdocs build --config-file mkdocs.production.yml
|
2022-08-10 19:57:55 -04:00
|
|
|
mv .well-known site/
|
|
|
|
pipenv run mkdocs --version
|
2022-08-18 12:46:56 -04:00
|
|
|
|
|
|
|
- name: Matrix homeserver configuration
|
|
|
|
run: |
|
|
|
|
mkdir -p site/.well-known/matrix
|
|
|
|
curl -o site/.well-known/matrix/server https://matrix.privacyguides.org/.well-known/matrix/server
|
|
|
|
curl -o site/.well-known/matrix/client https://matrix.privacyguides.org/.well-known/matrix/client
|
2022-08-10 19:57:55 -04:00
|
|
|
|
|
|
|
- name: Package website
|
|
|
|
uses: actions/upload-pages-artifact@v1
|
|
|
|
with:
|
|
|
|
path: site
|
|
|
|
|
|
|
|
deploy:
|
|
|
|
name: Deploy
|
|
|
|
needs: 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
|
|
|
|
|
|
|
|
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@main
|