Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dsikka committed Feb 20, 2024
1 parent 2a2176f commit f7243c8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ jobs:
with:
filename: dist/*.whl
internal: $INTERNAL
- name: Temp Step
run: |
echo ${{ steps.push-wheel.outputs.wheel }}
pull_wheel:
needs: build_and_push
runs-on: ubuntu-latest
Expand All @@ -66,7 +70,7 @@ jobs:
- name: Pull from s3
uses: neuralmagic/nmstore/actions/s3_pull@pypi-test
with:
filename: ${{ needs.build_and_push.outputs.built_wheel }}
filename: ${{needs.build_and_push.outputs.built_wheel}}
internal: $INTERNAL
dst: dist_s3

1 change: 1 addition & 0 deletions src/sparsezoo/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def _generate_version():
else:
return f"{version_base}.{date.today().strftime('%Y%m%d')}"


__all__ = [
"__version__",
"version_base",
Expand Down

0 comments on commit f7243c8

Please sign in to comment.