diff --git a/.forgejo/workflows/pages.yaml b/.forgejo/workflows/pages.yaml index 87e62f7..ccedb5b 100644 --- a/.forgejo/workflows/pages.yaml +++ b/.forgejo/workflows/pages.yaml @@ -24,8 +24,10 @@ jobs: - name: Website upload run: | cd public - git config user.name ${{ vars.PAGES_USER }} - git config user.password "${{ secrets.PAGES_TOKEN }} - git commit -m 'Update' - git remote set-url origin ${{ github.server_url }}.${{ github.repository }} + date > generated.txt + # Note: the following account information will not work on GHES + git config user.name "forgejo-actions[bot]" + git config user.email "dev@ayakael.net" + git add . + git commit -m "Update" git push