Skip to content
Merged
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
14 changes: 7 additions & 7 deletions .github/workflows/python-package.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -71,7 +71,7 @@ jobs:
run: pip install build
- name: Build source distribution
run: python -m build --sdist
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: sdist
path: dist/tcod-*.tar.gz
Expand DownExpand Up@@ -171,7 +171,7 @@ jobs:
if: runner.os != 'Windows'
run: cat /tmp/xvfb.log
- uses: codecov/codecov-action@v5
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
if: runner.os == 'Windows'
with:
name: wheels-windows-${{ matrix.architecture }}-${{ matrix.python-version }}
Expand DownExpand Up@@ -290,7 +290,7 @@ jobs:
BUILD_DESC=${BUILD_DESC//\*}
echo BUILD_DESC=${BUILD_DESC} >> $GITHUB_ENV
- name: Archive wheel
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: wheels-linux-${{ matrix.arch }}-${{ env.BUILD_DESC }}
path: wheelhouse/*.whl
Expand DownExpand Up@@ -339,7 +339,7 @@ jobs:
PYTHON_DESC=${PYTHON_DESC//\*/X}
echo PYTHON_DESC=${PYTHON_DESC} >> $GITHUB_ENV
- name: Archive wheel
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: wheels-macos-${{ env.PYTHON_DESC }}
path: wheelhouse/*.whl
Expand DownExpand Up@@ -367,7 +367,7 @@ jobs:
CIBW_BUILD: cp313-pyodide_wasm32
CIBW_PLATFORM: pyodide
- name: Archive wheel
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: pyodide
path: wheelhouse/*.whl
Expand All@@ -385,11 +385,11 @@ jobs:
permissions:
id-token: write # Attestation
steps:
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: sdist
path: dist/
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
pattern: wheels-*
path: dist/
Expand Down
Loading