This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch main
in repository eradio.

View the commit online.

commit 9622e2d6efe7e57fb28f45c6405683ef39d5f4e4
Author: politebot <[email protected]>
AuthorDate: Sat Oct 11 19:31:17 2025 -0500

    Update release workflow
---
 .github/workflows/release.yml | 23 ++++++++++++++++++++++-
 1 file changed, 22 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index b53b16c..c301979 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -46,4 +46,25 @@ jobs:
         uses: actions/upload-artifact@v4
         with:
           name: eradio-src-tarball
-          path: eradio-*.tar.gz
\ No newline at end of file
+          path: eradio-*.tar.gz
+
+  release:
+    runs-on: ubuntu-latest
+    needs: dist
+    if: startsWith(github.ref, 'refs/tags/')
+    permissions:
+      contents: write
+
+    steps:
+      - name: Download artifact
+        uses: actions/download-artifact@v4
+        with:
+          name: eradio-src-tarball
+
+      - name: Create GitHub Release
+        uses: softprops/action-gh-release@v1
+        with:
+          files: eradio-*.tar.gz
+          generate_release_notes: true
+          draft: false
+          prerelease: false
\ No newline at end of file

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to