diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index 130f546..0000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Publish - -on: - workflow_run: - workflows: [Checks] - branches: [master] - types: [completed] - -concurrency: ${{ github.workflow }}-${{ github.ref }} - -permissions: - contents: write - pull-requests: write - -jobs: - release-please: - runs-on: ubuntu-latest - steps: - - uses: googleapis/release-please-action@v4 - id: release - with: - release-type: node - # The logic below handles the npm publication: - - uses: actions/checkout@v4 - # these if statements ensure that a publication only occurs when - # a new release is created: - if: ${{ steps.release.outputs.release_created }} - - uses: actions/setup-node@v4 - with: - node-version: 20 - registry-url: 'https://registry.npmjs.org' - cache: "pnpm" - if: ${{ steps.release.outputs.release_created }} - - uses: pnpm/action-setup@v4 - with: - version: 9 - - run: pnpm install --frozen-lockfile - if: ${{ steps.release.outputs.release_created }} - - run: npm publish - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - if: ${{ steps.release.outputs.release_created }} diff --git a/.release-please-manifest.json b/.release-please-manifest.json deleted file mode 100644 index 895bf0e..0000000 --- a/.release-please-manifest.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - ".": "2.0.0" -} diff --git a/release-please-config.json b/release-please-config.json deleted file mode 100644 index 10f74f1..0000000 --- a/release-please-config.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "packages": { - ".": { - "changelog-path": "CHANGELOG.md", - "release-type": "node", - "bump-minor-pre-major": false, - "bump-patch-for-minor-pre-major": false, - "include-component-in-tag": false, - "draft": false, - "prerelease": false - } - }, - "plugins": [ - { - "type": "sentence-case" - } - ], - "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" -}