From 0c3ff8888482cdd6d0b0f2d9aeb11a0bafface8e Mon Sep 17 00:00:00 2001 From: Suman Gole Date: Mon, 22 Apr 2024 20:24:48 +0545 Subject: [PATCH] ci: configure release-please to generate changelog --- .github/workflows/release-please.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/release-please.yml diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml new file mode 100644 index 0000000..d0d7a7b --- /dev/null +++ b/.github/workflows/release-please.yml @@ -0,0 +1,17 @@ +on: + push: + branches: + - main + workflow_dispatch: + +name: release-please + +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - name: Release + uses: google-github-actions/release-please-action@v4 + with: + token: ${{ secrets.CI_RELEASE_PLEASE_TOKEN }} + release-type: simple \ No newline at end of file