Skip to content

Commit

Permalink
fix: update github user secret (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickreynolds committed Apr 10, 2024
1 parent 0c8bc06 commit 3bc9bcd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test-publish-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
env:
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
GH_USER: ${{secrets.GH_USER}}
GH_EMAIL: ${{secrets.GH_EMAIL}}
GH_USER: ${{secrets.GITHUB_USER}}
GH_EMAIL: ${{secrets.GITHUB_EMAIL}}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -33,7 +33,7 @@ jobs:
- run: pnpm run test
- name: 'Setup git coordinates'
run: |
git remote set-url origin https://${{secrets.GH_USER}}:${{secrets.GITHUB_TOKEN}}@github.com/decentralized-identity/agent-explorer.git
git remote set-url origin https://${{secrets.GITHUB_USER}}:${{secrets.GITHUB_TOKEN}}@github.com/decentralized-identity/agent-explorer.git
git config user.name $GH_USER
git config user.email $GH_EMAIL
Expand Down

0 comments on commit 3bc9bcd

Please sign in to comment.