Compare commits

...

15 Commits

Author SHA1 Message Date
ebc6e32655 Update .gitea/workflows/pages.yml
All checks were successful
Continuous Integration / build (push) Successful in 24s
2024-01-18 15:08:57 +01:00
66e3da412a Update .gitea/workflows/pages.yml
Some checks failed
Continuous Integration / build (push) Failing after 25s
2024-01-18 15:07:55 +01:00
84e5cc9cf5 Update .gitea/workflows/pages.yml
Some checks failed
Continuous Integration / build (push) Failing after 23s
2024-01-18 15:06:47 +01:00
d343c4c6d6 Update .gitea/workflows/pages.yml
Some checks failed
Continuous Integration / build (push) Failing after 24s
2024-01-18 15:03:46 +01:00
1587362235 Update .gitea/workflows/pages.yml
Some checks failed
Continuous Integration / build (push) Failing after 23s
2024-01-18 15:01:01 +01:00
5123480d8d Update .gitea/workflows/pages.yml
Some checks failed
Continuous Integration / build (push) Failing after 24s
2024-01-18 14:57:23 +01:00
fcf9bed24a Update .gitea/workflows/pages.yml
Some checks failed
Continuous Integration / build (push) Failing after 23s
2024-01-18 14:55:04 +01:00
9f7b3237cf Update .gitea/workflows/pages.yml
Some checks failed
Continuous Integration / build (push) Failing after 23s
2024-01-18 14:52:36 +01:00
e07e772e61 Update .gitea/workflows/pages.yml
Some checks failed
Continuous Integration / build (push) Failing after 22s
2024-01-18 14:48:30 +01:00
6bfd50b383 Update .gitea/workflows/pages.yml
Some checks failed
Continuous Integration / build (push) Failing after 22s
2024-01-18 14:46:27 +01:00
49b63b2fbc Update .gitea/workflows/pages.yml
Some checks failed
Continuous Integration / build (push) Failing after 22s
2024-01-18 14:38:57 +01:00
d3a173a0e8 Update .gitea/workflows/pages.yml
Some checks failed
Continuous Integration / build (push) Failing after 23s
2024-01-18 14:34:33 +01:00
0290d1c2ac Update .gitea/workflows/pages.yml
Some checks failed
Continuous Integration / build (push) Failing after 23s
2024-01-18 14:33:20 +01:00
0b450723b7 Update .gitea/workflows/pages.yml
Some checks failed
Continuous Integration / build (push) Failing after 24s
2024-01-18 14:26:19 +01:00
36d968d053 Update .gitea/workflows/pages.yml
Some checks failed
Continuous Integration / build (push) Failing after 24s
2024-01-18 14:23:17 +01:00

View File

@ -6,7 +6,7 @@ on:
jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
env:
CI_COMMIT_MESSAGE: Continuous Integration update docs
CI_COMMIT_AUTHOR: Continuous Integration
@ -18,14 +18,16 @@ jobs:
- run: pip3 install mkdocs-material
- run: mkdocs build
- run: mv site/ deploy/
# Commit and push all changed files.
- name: GIT Commit Build Artifacts (coverage, dist, devdist, docs)
run: |
- run: |
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}"
git config --global user.email "username@users.noreply.github.com"
git add deploy/
- run: |
mkdir pages
cp -r site/* pages/
- run: |
git add pages/
git commit -m "${{ env.CI_COMMIT_MESSAGE }}"
git branch -M pages
git push -u origin pages --force
git pull
- run: git subtree push --prefix pages origin gitea-pages