diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml deleted file mode 100644 index cb5ff4f..0000000 --- a/.github/workflows/release-please.yml +++ /dev/null @@ -1,44 +0,0 @@ ---- - name: Release Please - on: - push: - branches: - - main - workflow_dispatch: - - permissions: - id-token: write - contents: write - pull-requests: write - - jobs: - release-please: - runs-on: ubuntu-latest - steps: - - name: Checkout Repository - uses: actions/checkout@v5 - with: - fetch-depth: 0 - - - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@v5 - with: - aws-region: us-west-2 - role-to-assume: ${{ secrets.SECRETS_AWS_PACKAGING_ROLE_TO_ASSUME }} - role-duration-seconds: 900 - role-session-name: ${{ github.run_id }} - - - name: Get git credentials - uses: aws-actions/aws-secretsmanager-get-secrets@v2 - with: - parse-json-secrets: true - secret-ids: | - ${{ secrets.OSDS_PACKAGING_ROLE }} - - - name: Run release-please - uses: googleapis/release-please-action@v4 - with: - release-type: node - token: ${{ env.OSDS_ACCESS_TOKEN }} - config-file: release-please-config.json - manifest-file: .release-please-manifest.json diff --git a/.release-please-manifest.json b/.release-please-manifest.json deleted file mode 100644 index 2ca6b02..0000000 --- a/.release-please-manifest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - ".release-please-manifest.json": "4.0.2", - "package.json": "4.0.2", - ".": "5.1.1" -} diff --git a/release-please-config.json b/release-please-config.json deleted file mode 100644 index b8cd2f4..0000000 --- a/release-please-config.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "packages": { - ".": { - "changelog-path": "CHANGELOG.md", - "release-type": "node", - "bump-minor-pre-major": false, - "bump-patch-for-minor-pre-major": false, - "draft": false, - "prerelease": false, - "exclude-paths": [".github", "dist"] - } - }, - "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" -}