Skip to content

Commit

Permalink
Merge branch 'master' into testpr
Browse files Browse the repository at this point in the history
  • Loading branch information
omryMen authored Dec 4, 2024
2 parents 1fe5eec + 68ce83a commit fb61a10
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ jobs:
python -m pip install wheel
python setup.py sdist bdist_wheel
- name: rename dist files
run: for file in dist/*.gz; do mv "$file" "${file//bc-detect-secrets/bc_detect_secrets}" ; done
run: |
shopt -s nullglob
for file in dist/bc-*.gz; do mv "$file" "${file//bc-detect-secrets/bc_detect_secrets}" ; done
- name: Publish a Python distribution to PyPI
uses: pypa/gh-action-pypi-publish@b7f401de30cb6434a1e19f805ff006643653240e # v1
- name: sleep and wait for package to refresh
Expand Down
2 changes: 1 addition & 1 deletion detect_secrets/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '1.5.31'
VERSION = '1.5.32'

0 comments on commit fb61a10

Please sign in to comment.