commit 78e643f
Artur Manuel
·
2026-05-21 01:37:46 +0000 UTC
parent 59c62df
ci: try something and see if it works
1 files changed,
+3,
-1
+3,
-1
1@@ -21,9 +21,11 @@ jobs:
2 - name: Deploy pages
3 run: |
4 cd output
5+ git config user.name $FORGEJO_ACTOR
6+ git config user.email "$FORGEJO_ACTOR@noreply.codeberg.org"
7 git init
8 git remote add origin "$FORGEJO_SERVER_URL/$FORGEJO_REPOSITORY"
9 git switch -c pages
10 git add .
11- git commit -m "redeploy pages $FORGEJO_RUN_ID"
12+ echo $FORGEJO_TOKEN | git commit -m "redeploy pages $FORGEJO_RUN_ID"
13 git push