mirror of
https://github.com/yxrei/bemani-guide.git
synced 2024-11-28 00:20:49 +01:00
Fix actions
This commit is contained in:
parent
61e2fb26e8
commit
0c8389551a
15
.github/workflows/build.yml
vendored
15
.github/workflows/build.yml
vendored
@ -6,17 +6,18 @@ on:
|
|||||||
- main
|
- main
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
deploy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- name: Checkout
|
||||||
- name: Prep Python
|
uses: actions/checkout@v4
|
||||||
uses: actions/setup-python@v2
|
- name: Setup Python
|
||||||
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: '3.10'
|
python-version: '3.x'
|
||||||
- name: Install pip deps
|
- name: Install pip dependencies
|
||||||
run: |
|
run: pip install --user -r requirements.txt
|
||||||
python -m pip install --user -r requirements.txt
|
|
||||||
- name: Build and deploy site
|
- name: Build and deploy site
|
||||||
run: mkdocs gh-deploy --force
|
run: mkdocs gh-deploy --force
|
Loading…
Reference in New Issue
Block a user