Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dsikka committed Feb 15, 2024
1 parent 6900fe0 commit ed4b489
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-nmstore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ on:
schedule:
- cron: '0 0 * * *'

# if not dev or release, will create a nightly build
# everything is pushed to internal unless created through a nightly scheduled cron job
env:
INTERNAL: ${{ github.event_name != 'schedule' }}
RELEASE: ${{ github.event_name == 'push' && github.ref == 'refs/heads/release/[0-9]+.[0-9]+' }}
Expand Down Expand Up @@ -43,7 +45,6 @@ jobs:
with:
dev: $DEV
release: $RELEASE
runs-on: ubuntu-latest
- name: Push to s3 bucket
uses: neuralmagic/nmstore/actions/s3@pypi-test
with:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@

if is_release:
_PACKAGE_NAME = "sparsezoo"
else is_dev:
_PACKAGE_NAME = "sparsezoo-dev"
elif is_dev:
_PACKAGE_NAME = "sparsezoo-dev"
else:
_PACKAGE_NAME = "sparsezoo-nightly"

Expand Down

0 comments on commit ed4b489

Please sign in to comment.