mirror of
https://github.com/yxrei/two-torial.git
synced 2024-11-12 01:40:47 +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
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Prep Python
|
||||
uses: actions/setup-python@v2
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.10'
|
||||
- name: Install pip deps
|
||||
run: |
|
||||
python -m pip install --user -r requirements.txt
|
||||
python-version: '3.x'
|
||||
- name: Install pip dependencies
|
||||
run: pip install --user -r requirements.txt
|
||||
- name: Build and deploy site
|
||||
run: mkdocs gh-deploy --force
|
Loading…
Reference in New Issue
Block a user