From e1dcd0f7ae7c91b747f601277893e539c04c7fd1 Mon Sep 17 00:00:00 2001 From: Sam Estep Date: Sun, 17 Sep 2023 21:49:49 -0400 Subject: [PATCH] Log in to npm registry in GitHub Actions --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 42a435c..a81c046 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,6 +10,11 @@ jobs: steps: - name: Clone repo uses: actions/checkout@v3 + - name: Log in to npm registry + uses: actions/setup-node@v3 + with: + node-version: "18" + registry-url: https://registry.npmjs.org - run: make all - name: Publish npm packages run: npm publish --workspaces