Skip to content

Commit 812fbf1

Browse files
authored
Merge pull request #60 from jvkersch/fix/update-github-actions-to-v4
FIX: Update GitHub Actions artifact actions to v4
2 parents d1b8bb7 + db6d3c3 commit 812fbf1

4 files changed

Lines changed: 9 additions & 6 deletions

File tree

.github/workflows/build-wheels.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
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

.github/workflows/make-sdist.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
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

.github/workflows/upload-pypi.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ jobs:
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:

CLAUDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)