This commit is contained in:
parent
8cc3e20fa3
commit
6cb918ab09
1 changed files with 3 additions and 5 deletions
|
@ -5,9 +5,6 @@ jobs:
|
||||||
runs-on: x86_64
|
runs-on: x86_64
|
||||||
container:
|
container:
|
||||||
image: alpine:latest
|
image: alpine:latest
|
||||||
env:
|
|
||||||
GIT_USER: ayakael
|
|
||||||
GIT_PASS: ${{ secrets.PAGES_TOKEN }}
|
|
||||||
steps:
|
steps:
|
||||||
- name: Environment setup
|
- name: Environment setup
|
||||||
run: |
|
run: |
|
||||||
|
@ -15,13 +12,15 @@ jobs:
|
||||||
- name: Repo pull
|
- name: Repo pull
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 500
|
fetch-depth: 1
|
||||||
|
token: ${{ secrets.PAGES_TOKEN }}
|
||||||
- name: Public repo pull
|
- name: Public repo pull
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
ref: public
|
ref: public
|
||||||
path: public
|
path: public
|
||||||
|
token: ${{ secrets.PAGES_TOKEN }}
|
||||||
- name: Render website
|
- name: Render website
|
||||||
run: ikiwiki --setup ikiwiki.setup
|
run: ikiwiki --setup ikiwiki.setup
|
||||||
- name: Website upload
|
- name: Website upload
|
||||||
|
@ -31,7 +30,6 @@ jobs:
|
||||||
# Note: the following account information will not work on GHES
|
# Note: the following account information will not work on GHES
|
||||||
git config user.name "forgejo-actions[bot]"
|
git config user.name "forgejo-actions[bot]"
|
||||||
git config user.email "dev@ayakael.net"
|
git config user.email "dev@ayakael.net"
|
||||||
git config credential.helper "!f() { echo \"username=${GIT_USER}\\npassword=${GIT_PASS}\"; }; f"
|
|
||||||
git add .
|
git add .
|
||||||
git commit -m "Update"
|
git commit -m "Update"
|
||||||
git push
|
git push
|
||||||
|
|
Loading…
Reference in a new issue