Skip to content

Commit bd53f6b

Browse files
JAORMXclaude
andcommitted
Replace softprops action with gh release create
Use gh CLI directly instead of a third-party action. One fewer external dependency with the same functionality. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 4b9abba commit bd53f6b

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/release.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,14 @@ jobs:
7575
sha256sum propolis-*.tar.gz > sha256sums.txt
7676
7777
- name: Create GitHub Release
78-
uses: softprops/action-gh-release@v2
79-
with:
80-
generate_release_notes: true
81-
files: |
82-
propolis-runtime-linux-amd64.tar.gz
83-
propolis-runtime-linux-arm64.tar.gz
84-
propolis-firmware-linux-amd64.tar.gz
85-
propolis-firmware-linux-arm64.tar.gz
78+
env:
79+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
80+
run: |
81+
gh release create ${{ github.ref_name }} --generate-notes \
82+
propolis-runtime-linux-amd64.tar.gz \
83+
propolis-runtime-linux-arm64.tar.gz \
84+
propolis-firmware-linux-amd64.tar.gz \
85+
propolis-firmware-linux-arm64.tar.gz \
8686
sha256sums.txt
8787
8888
push-oci:

0 commit comments

Comments
 (0)