From 16d90eba1ed8b22dbb3436803d448ab32e28aff9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barth=C3=A9lemy=20Laurans?= Date: Fri, 12 Apr 2024 22:00:40 +0200 Subject: [PATCH] Fix publish action --- .github/workflows/publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1fae41a..854d82e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,4 +13,6 @@ jobs: - name: Compile run: yarn tsc - name: Publish to npm - run: yarn npm publish --otp ${{ secrets.NPM_AUTH_TOKEN }} + run: yarn npm publish + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}