Skip to content
This repository was archived by the owner on Jun 3, 2025. It is now read-only.

Commit f7243c8

Browse files
committed
fix
1 parent 2a2176f commit f7243c8

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/build-wheel.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ jobs:
4747
with:
4848
filename: dist/*.whl
4949
internal: $INTERNAL
50+
- name: Temp Step
51+
run: |
52+
echo ${{ steps.push-wheel.outputs.wheel }}
53+
5054
pull_wheel:
5155
needs: build_and_push
5256
runs-on: ubuntu-latest
@@ -66,7 +70,7 @@ jobs:
6670
- name: Pull from s3
6771
uses: neuralmagic/nmstore/actions/s3_pull@pypi-test
6872
with:
69-
filename: ${{ needs.build_and_push.outputs.built_wheel }}
73+
filename: ${{needs.build_and_push.outputs.built_wheel}}
7074
internal: $INTERNAL
7175
dst: dist_s3
7276

src/sparsezoo/version.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ def _generate_version():
3434
else:
3535
return f"{version_base}.{date.today().strftime('%Y%m%d')}"
3636

37+
3738
__all__ = [
3839
"__version__",
3940
"version_base",

0 commit comments

Comments
 (0)