Update .gitea/workflows/pages.yml
Some checks failed
Continuous Integration / build (push) Failing after 25s

This commit is contained in:
xeovalyte 2024-01-19 12:56:23 +01:00
parent 3801ba1d8e
commit 3b8f1f2694

View File

@ -21,8 +21,9 @@ jobs:
# Commit and push all changed files. # Commit and push all changed files.
- run: | - run: |
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}" git config --global user.name "${{ env.GITHUB_USER }}"
git config --global user.email "me+ci@xeovalyte.dev" git config --global user.email "me+ci@xeovalyte.dev"
git config --global user.password "${{GITHUB_TOKEN}}"
- run: | - run: |
git submodule update --init --recursive --remote pages git submodule update --init --recursive --remote pages
- run: | - run: |
@ -30,8 +31,6 @@ jobs:
cp site/* pages/ -r cp site/* pages/ -r
- run: | - run: |
cd pages/ cd pages/
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}"
git config --global user.email "me+ci@xeovalyte.dev"
git add . git add .
git commit -m "${{ env.CI_COMMIT_MESSAGE }}" git commit -m "${{ env.CI_COMMIT_MESSAGE }}"
git push origin HEAD:pages git push origin HEAD:pages