Skip to content

Commit

Permalink
Change versions of GitHub Actions for release.
Browse files Browse the repository at this point in the history
And bump for a new release.
  • Loading branch information
hmcezar committed Dec 20, 2024
1 parent 8b1fc98 commit fd0badb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Build a binary wheel and a source tarball
run: python3 -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand All @@ -39,7 +39,7 @@ jobs:

steps:
- name: Download all the dists
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand All @@ -62,7 +62,7 @@ jobs:
id-token: write
steps:
- name: Download all the dists
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand All @@ -82,12 +82,12 @@ jobs:

steps:
- name: Download all the dists
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
- name: Sign the dists with Sigstore
uses: sigstore/gh-action-sigstore-python@v2.0.1
uses: sigstore/gh-action-sigstore-python@v3.0.0
with:
inputs: >-
./dist/*.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion clusttraj/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .main import main

__version__ = "0.2.0"
__version__ = "0.2.1"

__all__ = [
"main",
Expand Down

0 comments on commit fd0badb

Please sign in to comment.