Skip to content

Commit

Permalink
Rename idna* to idna_preflight*
Browse files Browse the repository at this point in the history
  • Loading branch information
kjd committed Aug 3, 2024
1 parent e98f6b8 commit 1361c16
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Build a binary wheel and a source tarball
run: python3 -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand All @@ -39,7 +39,7 @@ jobs:

steps:
- name: Download all the dists
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand All @@ -60,7 +60,7 @@ jobs:

steps:
- name: Download all the dists
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand Down Expand Up @@ -108,6 +108,12 @@ jobs:
with:
name: python-package-distributions
path: dist/
- name: List directory
run: ls -R
- name: Rename packages to idna-preflight
run: find . -exec bash -c 'mv $0 ${0/idna/idna_preflight}' {} \;
- name: List directory
run: ls -R
- name: Publish distribution to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down

0 comments on commit 1361c16

Please sign in to comment.