From 409fcad6246225bf2a70ce01bec15e3ae0f4ddf6 Mon Sep 17 00:00:00 2001 From: rameel Date: Thu, 6 Mar 2025 23:14:08 +0500 Subject: [PATCH] Update github action --- .github/workflows/publish.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 80d3fb7..2c024cf 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -32,14 +32,7 @@ jobs: run: npm run build - name: Publish packages - run: | - for dir in dist/*; do - if [ -d "$dir" ]; then - cd "$dir" - npm publish --access public - cd - > /dev/null - fi - done + run: npm publish --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}