Skip to content

Commit abcfe98

Browse files
committed
Fix workflow waring message
1 parent 4968e9a commit abcfe98

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/publish-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
run: ${{matrix.CMD_BUILD}}
9797
- name: Upload Release Asset
9898
id: upload-release-asset
99-
uses: actions/upload-release-asset@v1.0.1
99+
uses: softprops/action-gh-release@v1
100100
env:
101101
GITHUB_TOKEN: ${{ secrets.TOKEN }}
102102
with:
@@ -115,10 +115,10 @@ jobs:
115115
uses: actions/setup-python@v4
116116
with:
117117
python-version: '3.8'
118+
- name: Upgrade pip
119+
run: python -m pip install --upgrade pip
118120
- name: Install dependencies
119-
run: |
120-
python -m pip install --upgrade pip
121-
pip install setuptools wheel twine
121+
run: pip install setuptools wheel twine
122122
- name: Build and publish
123123
env:
124124
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}

0 commit comments

Comments
 (0)