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 }}