diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index cd43116..0000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Publish Branch - -on: - workflow_dispatch: # Allow manual trigger for non-standard cases. - -jobs: - publish: - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [lts/*] - - steps: - - uses: actions/checkout@v4 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 # https://github.com/actions/setup-node - with: - node-version: ${{ matrix.node-version }} - registry-url: 'https://registry.npmjs.org' - - run: npm ci - - run: npm run build - - run: npm publish --access public - env: - NODE_AUTH_TOKEN: ${{ secrets.NODE_AGENT_NPM_TOKEN }} - -