From c5cf053a5bae5efd6df2e7e9ad424c7bf0f21c62 Mon Sep 17 00:00:00 2001 From: codingluke Date: Sat, 26 Oct 2024 19:39:45 +0200 Subject: [PATCH] ci(release): add release-please action to create tags according do conventional commits --- .github/workflows/release-please.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..eb2b166 --- /dev/null +++ b/.github/workflows/release-please.yml @@ -0,0 +1,21 @@ +# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json +# INFO: https://github.com/googleapis/release-please-action +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.GITHUB_TOKEN }} + release-type: simple