parent
5553c261be
commit
c23d5adbc4
1 changed files with 15 additions and 5 deletions
|
@ -3,14 +3,24 @@ jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- name: "Clone Modpack"
|
||||||
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
repository: "root/posspack.git"
|
repository: "root/posspack"
|
||||||
path: "pack"
|
path: "pack"
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
- name: "Clone Wiki"
|
||||||
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
repository: "root/posspack.wiki.git"
|
repository: "root/posspack.wiki"
|
||||||
path: ".wiki"
|
path: ".wiki"
|
||||||
|
|
||||||
- run: python .forgejo/scripts/update-wiki.py
|
- name: "Update Modlist"
|
||||||
|
run: python .forgejo/scripts/update-wiki.py
|
||||||
|
|
||||||
|
- name: "Commit Changes"
|
||||||
|
run: |
|
||||||
|
git config --global user.name 'Your Name'
|
||||||
|
git config --global user.email 'your-username@users.noreply.github.com'
|
||||||
|
git commit -am "Automated report"
|
||||||
|
git push
|
||||||
|
|
Loading…
Reference in a new issue