From b32be1bc30d1d6ec95cce381793747a287993fa0 Mon Sep 17 00:00:00 2001 From: "John R. D'Orazio" Date: Thu, 2 Jan 2025 17:04:35 +0100 Subject: [PATCH] add name to publish step --- .github/workflows/npm-publish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index eba41d8..850e7dd 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -23,6 +23,7 @@ jobs: cache: 'yarn' - name: Install dependencies run: yarn install --immutable && yarn compile - - run: npm publish --provenance --access public + - name: Publish package + run: npm publish --provenance --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}