From f51275cb0ddc90e7d4be281f378f4fdf7e4ebb2a Mon Sep 17 00:00:00 2001 From: Drew Whisenant <7390131+drewwhis@users.noreply.github.com> Date: Sun, 11 Jan 2026 12:30:52 -0600 Subject: [PATCH] update pipeline --- .github/workflows/main.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a3eb57a..7271fe9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -32,6 +32,16 @@ jobs: - name: Publish package env: - Version: 0.0.${{ github.run_id }} + version: 0.0.${{ github.run_id }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: ./gradlew publish -PprojVersion="$Version" + run: ./gradlew publish -PprojVersion="$version" + + - name: Create release + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + version: 0.0.${{ github.run_id }} + run: | + gh release create "$version" \ + --repo="$GITHUB_REPOSITORY" \ + --title="${GITHUB_REPOSITORY#*/} ${version#v}" \ + --generate-notes