Skip to content

Commit

Permalink
Merge pull request #1769 from lontivero/test1
Browse files Browse the repository at this point in the history
fix run3
  • Loading branch information
lontivero authored Jul 5, 2024
2 parents c23fda7 + f8a5274 commit 3f17203
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ jobs:
- name: Deploy to GitHub Pages
env:
DEPLOY_ACCESS_TOKEN: ${{ secrets.DEPLOY_ACCESS_TOKEN }}
MY_EMAIL: [email protected]
MY_NAME: lucasontivero
run: |
git config user.email [email protected]
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

0 comments on commit 3f17203

Please sign in to comment.