Skip to content
Closed
Show file tree
Hide file tree
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
7 changes: 4 additions & 3 deletions .github/workflows/package-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ 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@v6
uses: actions/upload-artifact@v7
with:
name: macos-app-${{ matrix.setup.macos-deployment-target }}-${{ env.TARGET_ARCH }}
path: artifacts/
id: macos-app-${{ matrix.setup.macos-deployment-target }}-${{ env.TARGET_ARCH }}
path: artifacts/*.dmg
archive: false
6 changes: 3 additions & 3 deletions .github/workflows/package-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
run: |
rm -rf "$HOME/.gnupg"
- name: Upload artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: picard-sdist
path: dist/*
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
run: |
python -m build --wheel
- name: Upload artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: picard-bdist-${{ runner.os }}-${{ steps.setup.outputs.python-version }}
path: dist/*.whl
archive: false
5 changes: 3 additions & 2 deletions .github/workflows/package-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ jobs:
timestamp-rfc3161: http://timestamp.acs.microsoft.com
timestamp-digest: SHA256
- name: Archive production artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: windows-${{ matrix.setup.type }}
id: windows-${{ matrix.setup.type }}
path: artifacts/
archive: false
27 changes: 6 additions & 21 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ jobs:
permissions:
id-token: write # required for PyPI upload
steps:
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
pattern: picard-?dist*
pattern: picard-*.whl
path: dist/
merge-multiple: true
- name: Prepare distributions
Expand All @@ -79,27 +79,12 @@ jobs:
- uses: actions/setup-python@v6
with:
python-version: '3.14'
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: macos-app-11.0-x86_64
artifact-ids: macos-app-11.0-x86_64,macos-app-11.0-arm64,windows-installer,windows-portable,windows-store-app
path: artifacts/
- uses: actions/download-artifact@v7
with:
name: macos-app-11.0-arm64
path: artifacts/
- uses: actions/download-artifact@v7
with:
name: windows-store-app
path: artifacts/
- uses: actions/download-artifact@v7
with:
name: windows-installer
path: artifacts/
- uses: actions/download-artifact@v7
with:
name: windows-portable
path: artifacts/
- uses: actions/download-artifact@v7
merge-multiple: true
- uses: actions/download-artifact@v8
with:
name: picard-sdist
path: artifacts/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
uv run python setup.py build_locales
uv run pytest --verbose --cov=picard --cov-report html:htmlcov test
- name: Upload coverage report
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}
path: htmlcov/
Expand Down
Loading