Skip to content

Commit e1971fa

Browse files
Fix sigstore signature file output location
Change to dist/ directory before signing to ensure .sig and .pem files are created in the correct location for the upload step. Co-authored-by: jacksonpradolima <7774063+jacksonpradolima@users.noreply.github.com>
1 parent af7329e commit e1971fa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ jobs:
4141
run: python -m pip install sigstore==3.5.1
4242

4343
- name: Sign distributions
44-
run: sigstore sign dist/*.whl dist/*.tar.gz
44+
run: |
45+
cd dist
46+
sigstore sign *.whl *.tar.gz
4547
4648
- name: Upload release assets
4749
uses: softprops/action-gh-release@v2

0 commit comments

Comments
 (0)