From 43a8775249e6d161f469f1c30a73c915b4b133bd Mon Sep 17 00:00:00 2001 From: antoniojbt <5346783+antoniojbt@users.noreply.github.com> Date: Thu, 31 Jul 2025 14:01:33 -0600 Subject: [PATCH 1/2] Create release.yml --- .github/workflows/release.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 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..6f4e13a --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,28 @@ +name: Create Release PyPI + +on: + # whenever you push a tag like “v1.2.3” + push: + tags: + - '*.*.*' + # or when you draft/publish a release in the UI + release: + types: [created] + +jobs: + create_release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Create GitHub Release + uses: actions/create-release@v1 + with: + tag_name: ${{ github.ref_name }} # e.g. v1.2.3 + release_name: Release ${{ github.ref_name }} + body: | + + - Feature A + - Fix B + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 88ce4295a65630f5a5787927bc8fd7726289efd0 Mon Sep 17 00:00:00 2001 From: antoniojbt <5346783+antoniojbt@users.noreply.github.com> Date: Thu, 31 Jul 2025 14:02:52 -0600 Subject: [PATCH 2/2] Update .github/workflows/release.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6f4e13a..e45c213 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: create_release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create GitHub Release uses: actions/create-release@v1