From f8a52745cf6a4b7ea039150f88ae0a7339c0c85c Mon Sep 17 00:00:00 2001 From: ci-deployer Date: Fri, 5 Jul 2024 12:37:41 -0300 Subject: [PATCH] fix run3 --- .github/workflows/build-and-deploy.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index 070562332..930e31b73 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -30,7 +30,11 @@ jobs: - name: Deploy to GitHub Pages env: DEPLOY_ACCESS_TOKEN: ${{ secrets.DEPLOY_ACCESS_TOKEN }} + MY_EMAIL: lucasontivero@gmail.com + MY_NAME: lucasontivero run: | - git config user.email ci-deployer@howknows.com - git config user.name ci-deployer - npm run deploy -r https://${{ secrets.DEPLOY_ACCESS_TOKEN }}@github.com/WalletWasabi/WasabiDoc.git + git config --global user.email $MY_EMAIL + git config --global user.name $MY_NAME + git remote set-url origin https://$MY_NAME:${{ secrets.DEPLOY_ACCESS_TOKEN }}@github.com/WalletWasabi/WasabiDoc.git + npm run deploy +