Skip to content

Commit

Permalink
attempt at fixing gh commandline globbing to attach files to the rele…
Browse files Browse the repository at this point in the history
…ase (#138)
  • Loading branch information
Mpdreamz authored Aug 8, 2024
1 parent 7dbc408 commit 6e5241f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ jobs:

- run: ./build.sh release
name: Release


- name: List distributions
run: ls -al ${{ env.RELEASE_DISTRO }}

- name: Generate build provenance (Distribution)
uses: actions/attest-build-provenance@5e9cb68e95676991667494a6a4e59b8a2f13e1d0 # v1.3.3
with:
Expand All @@ -49,8 +52,7 @@ jobs:
if: ${{ github.event_name == 'release' }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release upload ${{ github.ref_name }} '${{ env.RELEASE_DISTRO }}'
run: gh release upload ${{ github.ref_name }} ${{ env.RELEASE_DISTRO }}

- name: Release to Nuget (only for release events)
if: ${{ github.event_name == 'release' }}
Expand Down

0 comments on commit 6e5241f

Please sign in to comment.