From a9f8d319015dc21d0f6994935089c51d7da0392b Mon Sep 17 00:00:00 2001 From: Robin Malfait Date: Wed, 1 Oct 2025 18:21:07 +0200 Subject: [PATCH] use `v3-lts` tag Just `3` or `v3` are not valid and you will get an error. Angular uses `v{n}-lts` for the versions they still support: https://www.npmjs.com/package/@angular/core?activeTab=versions Adding a tag is important, because omitting the `--tag` is the same as `--tag latest` --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4554a07ae897..9d3dfff06c09 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,7 +45,7 @@ jobs: echo "TAILWINDCSS_VERSION=$(node -e 'console.log(require(`./package.json`).version);')" >> $GITHUB_ENV - name: Publish - run: npm publish --provenance + run: npm publish --provenance --tag v3-lts env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}