From 283444f0be9f30f18f5ebc23f1f580add244968b Mon Sep 17 00:00:00 2001 From: Raymond Li Date: Tue, 31 Oct 2023 17:44:31 -0400 Subject: [PATCH] Fix build.yml --- .github/workflows/build.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7e5d9d9d..ef0abcca 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,8 +44,10 @@ jobs: runs-on: ubuntu-latest needs: build steps: - - run : git config user.name github-actions - - run : git config user.email github-actions@github.com - - run : git --work-tree build add --all - - run : git commit -m "Automatic Deploy action run by github-actions" - - run : git push origin HEAD:gh-pages --force + - name: 🚚 Checkout + uses: actions/checkout@v3 + - run : git config user.name github-actions + - run : git config user.email github-actions@github.com + - run : git --work-tree build add --all + - run : git commit -m "Automatic Deploy action run by github-actions" + - run : git push origin HEAD:gh-pages --force