Skip to content

Commit

Permalink
Merge pull request #492 from hugovk/deploy-twine
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Dec 14, 2021
2 parents 269621b + 243d49b commit e3ccc5a
Showing 1 changed file with 20 additions and 6 deletions.
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

0 comments on commit e3ccc5a

Please sign in to comment.