From caf68f1d7fcd8fd52fbc63204d4c436a2112bc03 Mon Sep 17 00:00:00 2001 From: Daniel Chew Date: Fri, 7 Jun 2024 21:37:43 +0900 Subject: [PATCH] remove workflow (#1674) --- .github/workflows/publish-hermes-client.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .github/workflows/publish-hermes-client.yml diff --git a/.github/workflows/publish-hermes-client.yml b/.github/workflows/publish-hermes-client.yml deleted file mode 100644 index 6977c06e46..0000000000 --- a/.github/workflows/publish-hermes-client.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Publish Hermes Client package - -on: - push: - tags: - - hermes-client-v* -jobs: - publish-js: - name: Publish Hermes Client to NPM - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: "18" - registry-url: "https://registry.npmjs.org" - - run: npm ci - - run: npx lerna run build --no-private - - run: npx lerna publish from-git --yes --no-private --no-git-tag-version - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}