Skip to content

docs: add discord to footer #8

docs: add discord to footer

docs: add discord to footer #8

Workflow file for this run

name: 🚢 Deploy
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install pelican Pygments
- name: Build
run: pelican ${{github.workspace}}/content -s ${{github.workspace}}/publishconf.py
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
external_repository: GameDevTecnico/cubos
publish_dir: ${{github.workspace}}/output
keep_files: true