From 69ea7b94434e2a3746e6ad1477d122a8d4075c76 Mon Sep 17 00:00:00 2001 From: Ethan Arrowood Date: Wed, 11 Oct 2023 10:25:22 -0600 Subject: [PATCH] hopefully this fixes it for good (#2338) --- .github/workflows/publish-undici-types.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-undici-types.yml b/.github/workflows/publish-undici-types.yml index 95209964336..3579907a992 100644 --- a/.github/workflows/publish-undici-types.yml +++ b/.github/workflows/publish-undici-types.yml @@ -1,3 +1,5 @@ +name: Publish undici-types + on: push: tags: @@ -18,7 +20,7 @@ jobs: registry-url: 'https://registry.npmjs.org' - run: npm install - run: node scripts/generate-undici-types-package-json.js - - run: cd types - run: npm publish + working-directory: './types' env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}