Skip to content

Commit

Permalink
I meant ${{secrets}} not ${secrets}
Browse files Browse the repository at this point in the history
  • Loading branch information
mceachen committed Dec 18, 2024
1 parent 68853c7 commit b5a9162
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ jobs:

- name: Configure git for publishing
run: |
git config user.name "${secrets.GIT_USER_NAME}"
git config user.email "${secrets.GIT_USER_EMAIL}"
git config user.name "${{ secrets.GIT_USER_NAME }}"
git config user.email "${{ secrets.GIT_USER_EMAIL }}"
- name: Configure npm for publishing
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
Expand Down

0 comments on commit b5a9162

Please sign in to comment.