From 1faa5629642d650f31c6cfecbbbe33b429175884 Mon Sep 17 00:00:00 2001 From: Rubin Bhandari Date: Wed, 5 Jun 2024 18:34:33 +0545 Subject: [PATCH] ci: change the release please action name to new (#3259) * ci: change the release please action name to new * Update ci.yml * Create release-please-config.json * fix: add release manifest * fix: release-please --------- Co-authored-by: Folke Lemaitre --- .github/workflows/ci.yml | 5 +---- release-please-config.json | 5 +++++ 2 files changed, 6 insertions(+), 4 deletions(-) create mode 100644 release-please-config.json diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6b36e4c7..7b6f6478 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,13 +54,10 @@ jobs: - tests runs-on: ubuntu-latest steps: - - uses: google-github-actions/release-please-action@v4 + - uses: googleapis/release-please-action@v4 id: release with: release-type: simple - package-name: LazyVim - extra-files: | - lua/lazyvim/config/init.lua - uses: actions/checkout@v4 - name: tag stable versions if: ${{ steps.release.outputs.release_created }} diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 00000000..1d1b8b1d --- /dev/null +++ b/release-please-config.json @@ -0,0 +1,5 @@ +{ + "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", + "release-type": "simple", + "extra-files": ["lua/lazyvim/config/init.lua"] +}