Update .gitea/workflows/deploy.yml
Some checks failed
Build and deploy docs / deploy (push) Failing after 1s
Some checks failed
Build and deploy docs / deploy (push) Failing after 1s
This commit is contained in:
@@ -8,8 +8,20 @@ jobs:
|
|||||||
deploy:
|
deploy:
|
||||||
runs-on: docs-runner # must match the label of your registered act_runner
|
runs-on: docs-runner # must match the label of your registered act_runner
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Debug
|
||||||
uses: actions/checkout@v4
|
run: |
|
||||||
|
echo "REPOSITORY=$GITHUB_REPOSITORY"
|
||||||
|
echo "SERVER_URL=$GITHUB_SERVER_URL"
|
||||||
|
echo "GITEA_URL=$GITEA_URL"
|
||||||
|
env | sort | egrep -i 'GITHUB|GITEA|SERVER|URL|REPOSITORY' || true
|
||||||
|
|
||||||
|
- name: Checkout repository
|
||||||
|
run: |
|
||||||
|
git clone --depth 1 https://oauth2:${GITHUB_TOKEN}@${GITHUB_SERVER_URL#https://}/${GITHUB_REPOSITORY} .
|
||||||
|
|
||||||
|
- name: Set up virtualenv
|
||||||
|
run: |
|
||||||
|
echo "PATH=/home/git/venv/bin:$PATH" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: pip install --break-system-packages mkdocs-material mkdocs-macros-plugin pyyaml
|
run: pip install --break-system-packages mkdocs-material mkdocs-macros-plugin pyyaml
|
||||||
|
|||||||
Reference in New Issue
Block a user