From 5d7115b8c9ca4bc60f31c344a98f8457d3bab150 Mon Sep 17 00:00:00 2001 From: Thomas Bernard Date: Wed, 17 Jul 2024 16:49:14 +0200 Subject: [PATCH 1/2] ci: :construction_worker: add release please action --- .github/workflows/release-please.yml | 19 +++++++++++++++++++ 1 file changed, 19 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 00000000..2fa88576 --- /dev/null +++ b/.github/workflows/release-please.yml @@ -0,0 +1,19 @@ +on: + push: + # branches: + # - * + +permissions: + contents: write + pull-requests: write + +name: release-please + +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - uses: googleapis/release-please-action@v4 + with: + # token: ${{ secrets.RELEASE_PLEASE_TOKEN }} + release-type: simple \ No newline at end of file From 25b611d95c56315a748e00eba102fecaf7c38f54 Mon Sep 17 00:00:00 2001 From: Sarah C Date: Wed, 28 Aug 2024 17:50:21 +0200 Subject: [PATCH 2/2] ci: :rocket: Trigger ci on tag push --- .github/workflows/release-please.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 2fa88576..81669aa7 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -1,7 +1,7 @@ on: push: - # branches: - # - * + tags: + - 'v*' permissions: contents: write