From 76b8fd24d63e168afa44e062b101f36594b95132 Mon Sep 17 00:00:00 2001 From: nmanu1 Date: Mon, 30 Oct 2023 19:35:31 -0400 Subject: [PATCH] v0.27.0 fix package name and remove dry run flags. still no npm token though --- .github/workflows/publish-hold.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-hold.yml b/.github/workflows/publish-hold.yml index 70ef0e923..9ba0deb2f 100644 --- a/.github/workflows/publish-hold.yml +++ b/.github/workflows/publish-hold.yml @@ -14,12 +14,12 @@ jobs: - uses: actions/checkout@v3 - uses: ./.github/setup-ci - run: npm run build - - run: cd ./packages/studio-plugin && npm publish --dry-run=true + - run: cd ./packages/studio-plugin && npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - - run: cd ./pacakages/studio-ui && npm publish --dry-run=true + - run: cd ./packages/studio-ui && npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - - run: cd ./packages/studio && npm publish --dry-run=true + - run: cd ./packages/studio && npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}