From 8a24a4c42b9edadee603200a5bf8b462c24f6e05 Mon Sep 17 00:00:00 2001 From: "Jorge O. Castro" Date: Sun, 10 Sep 2023 15:09:40 +0200 Subject: [PATCH] chore(ci): add release please action --- .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..6c6ea3e --- /dev/null +++ b/.github/workflows/release-please.yml @@ -0,0 +1,21 @@ +on: + push: + branches: + - main +name: release-please +jobs: + release-please: + permissions: + contents: write + pull-requests: write + runs-on: ubuntu-latest + outputs: + releases_created: ${{ steps.release-please.outputs.releases_created }} + tag: ${{ steps.release-please.outputs.tag_name }} + upload_url: ${{ steps.release-please.outputs.upload_url }} + steps: + - uses: google-github-actions/release-please-action@v3 + id: release-please + with: + release-type: node + package-name: release-please-action