second try
Meson Build and Deploy / build (push) Failing after 1m23s

This commit is contained in:
Arthur Barraux
2025-09-25 11:00:53 +02:00
parent 02d7f27ec3
commit 3505084527
+11 -5
View File
@@ -42,8 +42,14 @@ jobs:
run: doxygen Doxyfile
- name: Deploy to Pages
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./docs/html
publish_branch: pages
github_token: ${{ secrets.GITEA_TOKEN }}
run: |
git config user.name "CI Bot"
git config user.email "ci-bot@homelinuxserver"
git fetch origin
git checkout --orphan pages
git rm -rf .
cp -r docs/html/* .
git add .
git commit -m "Update docs" || echo "No changes to commit"
git push https://$USERNAME:${{ secrets.GITEA_TOKEN }}@homelinuxserver.ddns.net/git/<username>/<repo>.git pages --force