From 60cb6381c38dbed87277347a614d28bc32d13209 Mon Sep 17 00:00:00 2001 From: ryan-WORK Date: Tue, 14 Apr 2026 01:24:47 -0700 Subject: [PATCH] use gh over 3rd party --- .github/workflows/ci.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fc4e936..80aaaa7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,8 +45,10 @@ jobs: cd bin && sha256sum ohm-* > checksums.txt - name: release - uses: softprops/action-gh-release@v2 - with: - files: | - bin/ohm-* - bin/checksums.txt + env: + GH_TOKEN: ${{ github.token }} + run: | + gh release create ${{ github.ref_name }} \ + bin/ohm-* bin/checksums.txt \ + --title "${{ github.ref_name }}" \ + --generate-notes