Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,13 +191,13 @@ jobs:

steps:
- name: download mcpl-python sdist
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
with:
name: sdist-mcpl-python
path: ./sdist-python

- name: download mcpl-metapkg sdist
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
with:
name: sdist-mcpl-metapkg
path: ./sdist-metapkg
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:

steps:
- name: download mcpl-core sdist
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
with:
name: sdist-mcpl-core
path: ./sdist
Expand Down Expand Up @@ -329,13 +329,13 @@ jobs:
# to ensure we do not get an error or inadvertently bundle libmcpl.so.

- name: download mcpl-extra sdist
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
with:
name: sdist-mcpl-extra
path: ./sdist

- name: download mcpl-core sdist
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
with:
name: sdist-mcpl-core
path: ./sdist_core
Expand Down Expand Up @@ -404,50 +404,50 @@ jobs:
steps:
# sdists:
- name: download mcpl-core sdist
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
with:
name: sdist-mcpl-core
path: ./dist_core

- name: download mcpl-extra sdist
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
with:
name: sdist-mcpl-extra
path: ./dist_extra

- name: download mcpl-python sdist
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
with:
name: sdist-mcpl-python
path: ./dist_python

- name: download mcpl-metapkg sdist
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
with:
name: sdist-mcpl-metapkg
path: ./dist_metapkg

# pure wheels:
- name: download mcpl-python pure wheel
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
with:
name: wheel-mcpl-python
path: ./dist_python

- name: download mcpl-metapkg pure wheel
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
with:
name: wheel-mcpl-metapkg
path: ./dist_metapkg

# binary wheels (merge-multiple: true since produced in several jobs):
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
with:
pattern: "mcpl-core-wheels-*"
merge-multiple: true
path: ./dist_core

- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
with:
pattern: "mcpl-extra-wheels-*"
merge-multiple: true
Expand Down Expand Up @@ -561,7 +561,7 @@ jobs:
steps:

- name: download artifacts
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
with:
name: final
path: ./dist_final
Expand Down Expand Up @@ -641,7 +641,7 @@ jobs:
steps:

- name: download artifacts
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
with:
name: final
path: ./dist_final
Expand Down
Loading