From b5a916221752b8ea5a1a3a976fe63225adf5a86c Mon Sep 17 00:00:00 2001 From: Matthew McEachen Date: Tue, 17 Dec 2024 16:01:34 -0800 Subject: [PATCH] I meant ${{secrets}} not ${secrets} --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 54493cc..67f9580 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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