Skip to content

Commit edcf81f

Browse files
committed
CI: tweak publishing workflow
1 parent f7cd794 commit edcf81f

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v6
1313
with:
14+
fetch-depth: 0
1415
persist-credentials: false
1516

1617
- name: Set up Python
@@ -25,7 +26,7 @@ jobs:
2526
run: python3 -m build
2627

2728
- name: Store the distribution packages
28-
uses: actions/upload-artifact@v5
29+
uses: actions/upload-artifact@v7
2930
with:
3031
name: python-package-distributions
3132
path: dist/
@@ -50,7 +51,7 @@ jobs:
5051

5152
steps:
5253
- name: Download the built distributions
53-
uses: actions/download-artifact@v6
54+
uses: actions/download-artifact@v8
5455
with:
5556
name: python-package-distributions
5657
path: dist/

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name = "matplotlib-pgfutils"
66
description = "Utilities for generating PGF figures from Matplotlib"
77
dynamic = ["version"]
88
readme = {file = "README.md", content-type="text/markdown"}
9-
license = {text = "BSD-3-Clause"}
9+
license = "BSD-3-Clause"
1010
requires-python = ">=3.12"
1111
dependencies = [
1212
"matplotlib>=3.9.0"

0 commit comments

Comments
 (0)