Bump actions/upload-artifact from 3 to 4

This commit is contained in:
Philipp Wolfer
2024-01-04 08:46:39 +01:00
parent a5fde46ea2
commit f3cab00f74
3 changed files with 5 additions and 5 deletions

View File

@@ -76,7 +76,7 @@ jobs:
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
CODESIGN_MACOS_P12_PASSWORD: ${{ secrets.CODESIGN_MACOS_P12_PASSWORD }}
- name: Archive production artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: macos-app-${{ matrix.setup.macos-deployment-version }}
path: artifacts/

View File

@@ -67,7 +67,7 @@ jobs:
run: |
rm -rf "$HOME/.gnupg"
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: picard-sdist
path: dist/*
@@ -117,9 +117,9 @@ jobs:
run: |
python setup.py clean bdist_wheel
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: picard-bdist-${{ runner.os }}
name: picard-bdist-${{ runner.os }}-${{ matrix.python-version }}
path: dist/*.whl
- name: Publish Python distribution to PyPI
if: startsWith(github.ref, 'refs/tags/') && env.TWINE_PASSWORD

View File

@@ -121,7 +121,7 @@ jobs:
if: env.CODESIGN == '1'
run: Remove-Item .\codesign.pfx
- name: Archive production artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: matrix.type != 'signed-app' || env.CODESIGN == '1'
with:
name: windows-${{ matrix.type }}