Skip to content

Commit

Permalink
ci: fix github actions for dev release
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdragun authored and radimkarnis committed Sep 2, 2024
1 parent 92143ed commit 1f1e2c2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev_release_esptool_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install twine setuptools
python -m pip install twine 'setuptools>=64'
- name: Create development release ${{ github.ref_name }}
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_esptool_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools twine
pip install 'setuptools>=64' twine
- name: Build and upload esptool ${{ github.event.release.tag_name }}
env:
TWINE_USERNAME: __token__
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_esptool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools
pip install 'setuptools>=64'
- name: SoftHSM2 setup
run: |
Expand Down

0 comments on commit 1f1e2c2

Please sign in to comment.