Skip to content

Commit 044d931

Browse files
authored
Fix artifact names for PyPI publishing (#12)
1 parent e89b998 commit 044d931

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

.github/workflows/publish_pypi.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,16 @@ jobs:
1515
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
1616

1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
with:
2020
fetch-depth: 0 # needed for setuptools_scm
2121

2222
- name: Build wheels
23-
uses: pypa/[email protected].0
23+
uses: pypa/[email protected]
2424

25-
- uses: actions/upload-artifact@v3
25+
- uses: actions/upload-artifact@v4
2626
with:
27+
name: cibw-wheels-${{ matrix.os }}
2728
path: ./wheelhouse/*.whl
2829

2930
make_sdist:
@@ -45,8 +46,9 @@ jobs:
4546
- name: Build SDist
4647
run: python -m build --sdist
4748

48-
- uses: actions/upload-artifact@v3
49+
- uses: actions/upload-artifact@v4
4950
with:
51+
name: cibw-sdist
5052
path: dist/*.tar.gz
5153

5254
upload_all:
@@ -59,7 +61,8 @@ jobs:
5961
steps:
6062
- uses: actions/download-artifact@v4
6163
with:
62-
name: artifact
64+
pattern: cibw-*
6365
path: dist
66+
merge-multiple: true
6467

6568
- uses: pypa/gh-action-pypi-publish@release/v1

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.1.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.4]
9+
10+
### Fixed
11+
12+
* Fix artifact names for PyPI publishing ([#12](https://github.com/paulromano/endf-python/pull/12))
13+
814
## [0.1.3]
915

1016
### Fixed

0 commit comments

Comments
 (0)