Skip to content

Commit 7d9c05c

Browse files
committed
Move wheel upload after tests in conda-build.yml
1 parent 504fb14 commit 7d9c05c

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/conda-build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,6 @@ jobs:
7171
run: |
7272
python -m build --wheel --no-isolation
7373
74-
- name: Upload wheel artifact
75-
uses: actions/upload-artifact@v4.4.0
76-
with:
77-
name: data-validation-wheel-${{ matrix.os }}-py${{ matrix.python-version }}
78-
path: dist/*.whl
79-
8074
- name: Install wheel and dependencies
8175
shell: bash -l {0}
8276
run: |
@@ -89,3 +83,9 @@ jobs:
8983
mkdir -p /tmp/test_dir
9084
cd /tmp/test_dir
9185
pytest --pyargs tensorflow_data_validation
86+
87+
- name: Upload wheel artifact
88+
uses: actions/upload-artifact@v4.4.0
89+
with:
90+
name: data-validation-wheel-${{ matrix.os }}-py${{ matrix.python-version }}
91+
path: dist/*.whl

0 commit comments

Comments
 (0)