From f6fc064326d06fef6127cf9738d46d66bd4a80e1 Mon Sep 17 00:00:00 2001 From: Distractic Date: Sat, 15 Jun 2024 21:25:59 +0200 Subject: [PATCH] chore(ci): Auto-release action --- .github/workflows/release.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..c7efd8e --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,20 @@ +name: Release + +on: + push: + branches: + - main + +permissions: + contents: write + pull-requests: write + +jobs: + release: + runs-on: ubuntu-latest + outputs: + release_created: ${{ steps.release.outputs.release_created }} + tag_name: ${{ steps.release.outputs.tag_name }} + + steps: + - uses: google-github-actions/release-please-action@v4