-
-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing dollar signs for github variables and test release
- Loading branch information
1 parent
6b7a667
commit 86a62f2
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,8 +47,8 @@ jobs: | |
- name: upload artifacts | ||
uses: actions/upload-artifact@v4 # https://github.com/actions/upload-artifact/issues/478 | ||
with: | ||
name: curl_cffi-${{ github.sha }}-sdist.zip | ||
path: ./dist/*.tar.gz | ||
overwrite: true | ||
|
||
bdist: | ||
name: Build bdist wheels and test | ||
|
@@ -81,7 +81,7 @@ jobs: | |
|
||
- uses: actions/upload-artifact@v4 # https://github.com/actions/upload-artifact/issues/478 | ||
with: | ||
name: curl_cffi-{{ github.sha }}-{{ matrix.os }} | ||
name: curl_cffi-${{ github.sha }}-${{ matrix.os }}.zip | ||
path: ./wheelhouse/*.whl | ||
|
||
upload_all: | ||
|
@@ -91,13 +91,13 @@ jobs: | |
- uses: actions/[email protected] # https://github.com/actions/upload-artifact/issues/478 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
name: artifact | ||
pattern: curl_cffi-* | ||
path: dist | ||
|
||
- uses: pypa/[email protected] | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
password: ${{ secrets.PYPI_TOKEN }} | ||
# - uses: pypa/[email protected] | ||
# if: startsWith(github.ref, 'refs/tags/') | ||
# with: | ||
# password: ${{ secrets.PYPI_TOKEN }} | ||
|
||
- name: Upload release files | ||
if: startsWith(github.ref, 'refs/tags/') | ||
|