From 30f175acf8e3a94da4472181efde34009b9b92f3 Mon Sep 17 00:00:00 2001 From: vaxerski Date: Sat, 13 Aug 2022 12:13:58 +0200 Subject: [PATCH] fix typo --- .github/workflows/updateSite.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/updateSite.yml b/.github/workflows/updateSite.yml index f5305ed..3857c72 100644 --- a/.github/workflows/updateSite.yml +++ b/.github/workflows/updateSite.yml @@ -13,12 +13,16 @@ jobs: - uses: actions/checkout@v2 with: repository: hyprwm/hyprland-wiki-backend - token: ${{ secrets.TOKEN }} + token: ${{ secrets.TOKN }} - name: Pull & update submodules recursively run: | + git config --global user.name "Github Actions" + git config --global user.email "actions@github.com" git submodule update --init --recursive git submodule update --recursive --remote + with: + token: ${{ secrets.TOKN }} - name: Commit run: | git config user.email "actions@github.com"