File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2525 CIBW_BUILD : " cp310-* cp311-* cp312-* cp313-* cp314-*"
2626 CIBW_ARCHS_MACOS : " x86_64 arm64"
2727 CIBW_SKIP : " pp3*"
28- - uses : actions/upload-artifact@v2
28+ - uses : actions/upload-artifact@v4
2929 with :
30+ name : wheels-${{ matrix.os }}
3031 path : ./wheelhouse/*.whl
Original file line number Diff line number Diff line change 1111 - uses : actions/checkout@v3
1212 - name : build sdist
1313 run : pipx run build --sdist
14- - uses : actions/upload-artifact@v3
14+ - uses : actions/upload-artifact@v4
1515 with :
16+ name : sdist
1617 path : dist/*.tar.gz
Original file line number Diff line number Diff line change 1010 name : pypi
1111 url : https://pypi.org/p/tmtools
1212 steps :
13- - uses : actions/download-artifact@v3
13+ - uses : actions/download-artifact@v4
1414 with :
15- name : artifact
15+ pattern : ' *'
16+ merge-multiple : true
1617 path : wheelhouse/
1718 - uses : pypa/gh-action-pypi-publish@v1.5.0
1819 with :
Original file line number Diff line number Diff line change @@ -87,9 +87,9 @@ ruff check .
8787
8888** 3. Commit and tag:**
8989- Commit the version number changes
90- - Create a git tag with format ` vX.Y.Z ` (e.g., ` v0.3.0 ` )
90+ - Create an annotated git tag with format ` vX.Y.Z ` (e.g., ` v0.3.0 ` )
9191- The tag should point to the commit that changes the version numbers
92- - Example: ` git tag v0.3.0 && git push origin v0.3.0 `
92+ - Example: ` git tag -a v0.3.0 -m "Release v0.3.0" && git push origin v0.3.0 `
9393
9494** 4. Create GitHub release:**
9595- Publish a new GitHub release using the tag created above
You can’t perform that action at this time.
0 commit comments