mirror of
https://github.com/hyprwm/hyprland-wiki.git
synced 2024-11-22 04:35:59 +01:00
fix ci
This commit is contained in:
parent
84d022c6e9
commit
cf4bf5582b
1 changed files with 27 additions and 16 deletions
23
.github/workflows/updateSite.yml
vendored
23
.github/workflows/updateSite.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: Update website
|
name: Send submodule updates to the website repository
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
@ -6,12 +6,23 @@ on:
|
||||||
- main
|
- main
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
notify-parent-repo:
|
update:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Repository Dispatch
|
- uses: actions/checkout@v2
|
||||||
uses: peter-evans/repository-dispatch@v2
|
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.TOKN }}
|
|
||||||
repository: hyprwm/hyprland-wiki-backend
|
repository: hyprwm/hyprland-wiki-backend
|
||||||
event-type: sync-shared-submodule
|
token: ${{ secrets.TOKEN }}
|
||||||
|
|
||||||
|
- name: Pull & update submodules recursively
|
||||||
|
run: |
|
||||||
|
git submodule update --init --recursive
|
||||||
|
git submodule update --recursive --remote
|
||||||
|
- name: Commit
|
||||||
|
run: |
|
||||||
|
git config user.email "actions@github.com"
|
||||||
|
git config user.name "GitHub Actions - update submodules"
|
||||||
|
git add --all
|
||||||
|
git commit -m "Update submodules" || echo "No changes to commit"
|
||||||
|
git push
|
Loading…
Reference in a new issue