From 1ce1a3fe463b371576026a60abf21784738d3a87 Mon Sep 17 00:00:00 2001 From: Jochen Schalanda Date: Fri, 28 Jun 2024 15:18:00 +0200 Subject: [PATCH] ci(release): add release-please workflow - https://github.com/googleapis/release-please - https://github.com/googleapis/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 0000000..0981d9b --- /dev/null +++ b/.github/workflows/release-please.yml @@ -0,0 +1,19 @@ +name: release-please + +on: + push: + branches: [ main ] + +permissions: + contents: write + pull-requests: write + +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - uses: googleapis/release-please-action@v4 + with: + token: ${{ secrets.GH_PAT }} + release-type: go + skip-github-release: true