From cdec3927004fd28ec8cfb70cd03809f0d627f676 Mon Sep 17 00:00:00 2001 From: Matthew Davis Date: Tue, 29 Oct 2024 11:52:02 -0500 Subject: [PATCH] bump --- .github/workflows/publish.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 728d640..a6c2ee3 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -11,6 +11,10 @@ jobs: steps: - name: checkout uses: actions/checkout@v2 + - name: write to .npmrc + run: echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" > ~/.npmrc + - name: install + run: npm install --legacy-peer-deps - name: automated version bump uses: "phips28/gh-action-bump-version@master" env: @@ -18,10 +22,6 @@ jobs: with: target-branch: main commit-message: "CI: bumps version to {{version}} [skip ci]" - - name: write to .npmrc - run: echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" > ~/.npmrc - - name: install - run: npm install --legacy-peer-deps - name: build run: npm run build - name: publish