Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install Twine to upload to PyPI #492

Merged
merged 1 commit into from Dec 14, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
26 changes: 20 additions & 6 deletions .github/workflows/deploy.yml
Expand Up @@ -24,10 +24,17 @@ jobs:
steps:
- uses: actions/checkout@v2
- run: git fetch --prune --unshallow
- uses: actions/setup-python@v2

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.3.0
- name: Set up Python
uses: actions/setup-python@v2
with:
cache: pip
cache-dependency-path: ".github/workflows/deploy.yml"

- name: Install dependencies
run: |
python -m pip install cibuildwheel==2.3.0
python -m pip install -U twine

- name: Build wheels
run: python -m cibuildwheel --output-dir dist
Expand Down Expand Up @@ -83,10 +90,17 @@ jobs:
steps:
- uses: actions/checkout@v2
- run: git fetch --prune --unshallow
- uses: actions/setup-python@v2

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.3.0
- name: Set up Python
uses: actions/setup-python@v2
with:
cache: pip
cache-dependency-path: ".github/workflows/deploy.yml"

- name: Install dependencies
run: |
python -m pip install cibuildwheel==2.3.0
python -m pip install -U twine

# https://github.com/docker/setup-qemu-action
- name: Set up QEMU
Expand Down