From 00ede109ff946062c20fbed5aab19fa40dce96fc Mon Sep 17 00:00:00 2001 From: Ben Elan Date: Sat, 22 Jun 2024 18:43:51 -0700 Subject: [PATCH] ci: update to release-please-action v4 --- .github/workflows/release.yml | 8 +------- release-please-config.json | 9 +++++++++ 2 files changed, 10 insertions(+), 7 deletions(-) create mode 100644 release-please-config.json diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ccfe118..a64fe14 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,17 +11,11 @@ jobs: name: release runs-on: ubuntu-latest steps: - - uses: google-github-actions/release-please-action@v3.7.9 + - uses: googleapis/release-please-action@v4 id: release with: release-type: simple - package-name: gh-fzf token: ${{ secrets.GITHUB_TOKEN }} - default-branch: main - extra-files: | - gh-fzf - .github/ISSUE_TEMPLATE/bug.yml - plugins: sentence-case - uses: actions/checkout@v4 with: token: ${{ secrets.GITHUB_TOKEN }} diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 0000000..3279987 --- /dev/null +++ b/release-please-config.json @@ -0,0 +1,9 @@ +{ + "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", + "release-type": "simple", + "packages": { + ".": { + "extra-files": ["gh-fzf", ".github/ISSUE_TEMPLATE/bug.yml"] + } + } +}