From 4b228c097084b339b94d6c5a1fb3899dc4bddccf Mon Sep 17 00:00:00 2001 From: Ilham Moutaharik Date: Fri, 19 Jun 2026 10:57:45 +0200 Subject: [PATCH] ci: tag prereleases on npm publish --- .github/workflows/continuous-deployment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/continuous-deployment.yml b/.github/workflows/continuous-deployment.yml index d1fe5fb..9c35d3a 100644 --- a/.github/workflows/continuous-deployment.yml +++ b/.github/workflows/continuous-deployment.yml @@ -53,4 +53,4 @@ jobs: run: npm run build - name: Publish to npm - run: npm publish --access public + run: npm publish --access public --tag ${{ github.event.release.prerelease && 'beta' || 'latest' }}