mirror of
https://github.com/yxrei/bemani-guide.git
synced 2024-11-12 01:10:48 +01:00
22 lines
476 B
YAML
22 lines
476 B
YAML
|
name: Build
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
- main
|
||
|
permissions:
|
||
|
contents: write
|
||
|
jobs:
|
||
|
deploy:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- name: Prep Python
|
||
|
uses: actions/setup-python@v2
|
||
|
with:
|
||
|
python-version: '3.10'
|
||
|
- name: Install pip deps
|
||
|
run: |
|
||
|
python -m pip install --user -r requirements.txt
|
||
|
- name: Build and deploy site
|
||
|
run: mkdocs gh-deploy --force
|