From 3bc9bcd19a999683f8e05ea5fc6abf93a496bfaf Mon Sep 17 00:00:00 2001 From: nickreynolds Date: Tue, 9 Apr 2024 20:47:57 -0400 Subject: [PATCH] fix: update github user secret (#231) --- .github/workflows/build-test-publish-on-push.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-test-publish-on-push.yml b/.github/workflows/build-test-publish-on-push.yml index 098f487..a9ee5e6 100644 --- a/.github/workflows/build-test-publish-on-push.yml +++ b/.github/workflows/build-test-publish-on-push.yml @@ -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 @@ -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