From d3d64b7b56c8eaf4d39d52f9ea3898b24df58917 Mon Sep 17 00:00:00 2001 From: nicomiguelino Date: Wed, 16 Jul 2025 14:34:15 -0700 Subject: [PATCH] chore(ci): create a release workflow --- .github/release.yml | 20 ++++++++++++++++++++ .github/workflows/create-release.yml | 20 ++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 .github/release.yml create mode 100644 .github/workflows/create-release.yml diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..00e2cfc --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,20 @@ +changelog: + exclude: + labels: + - chore + categories: + - title: Bug Fixes 🐞 + labels: + - bug + - title: Features ✨ + labels: + - enhancement + - title: Docs 📚 + labels: + - documentation + - title: Other Changes + labels: + - '*' + exclude: + labels: + - chore diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml new file mode 100644 index 0000000..892ec54 --- /dev/null +++ b/.github/workflows/create-release.yml @@ -0,0 +1,20 @@ +- name: Create Release + +on: + push: + tags: + - 'v*' + +jobs: + create-release: + name: Create Release + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - uses: actions/checkout@v4 + - name: Create Release + uses: softprops/action-gh-release@v2 + with: + generate_release_notes: true + prerelease: true