Skip to content

Commit

Permalink
Change yaml strings in release script
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarlow83 committed Jan 4, 2025
1 parent 55e7177 commit 368568b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -275,14 +275,14 @@ jobs:
- name: Sign the dists with Sigstore
uses: sigstore/[email protected]
with:
inputs: >-
inputs: |
./dist/*.tar.gz
./dist/*.whl
- name: Create GitHub Release
env:
GITHUB_TOKEN: ${{ github.token }}
run: >-
run: |
gh release create
'${{ github.ref_name }}'
--repo '${{ github.repository }}'
Expand All @@ -294,7 +294,7 @@ jobs:
# Upload to GitHub Release using the `gh` CLI.
# `dist/` contains the built packages, and the
# sigstore-produced signatures and certificates.
run: >-
run: |
gh release upload
'${{ github.ref_name }}' dist/**
--repo '${{ github.repository }}'
Expand Down

0 comments on commit 368568b

Please sign in to comment.