Skip to content

Commit 82801b5

Browse files
committed
ci: only simple steps allowed
1 parent b3dc8a9 commit 82801b5

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

.github/actions/cibuildwheel/action.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,11 @@ inputs:
99
description: 'Folder to place the outputs in, defaults to "wheelhouse"'
1010
required: false
1111
default: 'wheelhouse'
12-
artifact:
13-
description: 'Upload/merge wheels into the given artifact if not blank'
14-
required: false
15-
default: 'artifact'
1612

1713
runs:
1814
using: "composite"
1915
steps:
2016
- run: pip install cibuildwheel==1.7.1
2117
shell: bash
22-
- run: python -m cibuildwheel ${{ inputs.package-dir }} --output_dir ${{ inputs.output-dir }}
18+
- run: python -m cibuildwheel ${{ inputs.package-dir }} --output-dir ${{ inputs.output-dir }}
2319
shell: bash
24-
- uses: actions/upload-artifact@v2
25-
if: "${{ inputs.artifact }} != ''"
26-
with:
27-
path: wheelhouse/*
28-
name: ${{ inputs.artifact }}

.github/workflows/tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,10 @@ jobs:
9696
CIBW_TEST_COMMAND: pytest {project}/tests
9797
CIBW_BUILD_VERBOSITY: 1
9898

99+
- uses: actions/upload-artifact@v2
100+
with:
101+
path: wheelhouse/*
102+
99103
- name: Check wheels
100104
run: |
101105
python -m pip install twine

0 commit comments

Comments
 (0)