Skip to content

Commit

Permalink
Fix a small bug with publish script not adding idl to gh release (#317)
Browse files Browse the repository at this point in the history
* Fix a small bug with publish script not adding idl to gh release

* Prefix release title with `SDK`

* Release name
  • Loading branch information
wjthieme authored Sep 12, 2024
1 parent 3167371 commit e8a2434
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,13 @@ jobs:
uses: actions/download-artifact@v4
with:
name: idl
path: idl
- name: Create Release Name
id: name
run: echo "NAME=SDK - $(basename ${{ github.ref_name }})" >> $GITHUB_OUTPUT
- name: Create Release
uses: ncipollo/release-action@v1
with:
name: ${{ steps.name.outputs.NAME }}
generateReleaseNotes: true
allowUpdates: true
artifacts: idl
artifacts: idl.zip

0 comments on commit e8a2434

Please sign in to comment.