diff --git a/.github/workflows/action_update.yaml b/.github/workflows/action_update.yaml index d4dcb8a..2fe3ce7 100644 --- a/.github/workflows/action_update.yaml +++ b/.github/workflows/action_update.yaml @@ -13,6 +13,9 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 + - name: Unset GitHub auth configs + run: git config --unset-all http.https://github.com/.extraheader + - name: Clone remote run: git clone https://github.com/CompeyDev/setup-lune @@ -25,6 +28,6 @@ jobs: git config --global user.email "hi@devcomp.xyz" git config --global user.name "CI" git diff --quiet || (git add -u && git commit -m "sync: CompeyDev/lune-packaging (${{ github.sha }})") - git push + git push https://CompeyDev:${{ secrets.GH_AUTH_TOKEN }}@github.com/CompeyDev/setup-lune.git main working-directory: "setup-lune"