Skip to content

Commit

Permalink
Update upload and download github artifacts actions (#983)
Browse files Browse the repository at this point in the history
  • Loading branch information
aw-was-here authored Dec 31, 2023
1 parent 5630230 commit ebed699
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pyinstaller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH}:/usr/local/opt/icu4c/lib/pkgconfig"
./builder.sh
- name: artifact dist
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: mac-11-dist
path: "*.zip"
Expand All @@ -59,7 +59,7 @@ jobs:
run: |
./builder.sh
- name: artifact dist
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: windows-dist
path: "NowPlaying*windows"
10 changes: 5 additions & 5 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
source /tmp/venv/bin/activate
pytest --durations=10 -s tests
- name: artifact mac test
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: mac-11-coverage
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
fi
pytest --durations=10 -s tests
- name: artifact windows test
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: win-coverage
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
source /tmp/venv/bin/activate
pytest --durations=10 -s
- name: artifact linux test
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: linux-coverage
Expand Down Expand Up @@ -247,7 +247,7 @@ jobs:
python3 -m pip install --upgrade pip
pip install ".[test]"
- name: download coverage files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: artifacts
- name: display artifacts
Expand All @@ -259,7 +259,7 @@ jobs:
coverage combine artifacts/*/.coverage artifacts/*/.coverage.*
coverage html
- name: artifact full tests
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: full-coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yetus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
githubtoken: ${{ secrets.GITHUB_TOKEN }}
- name: Artifact output
if: ${{ always() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: apacheyetustestpatchactionout
path: ${{ github.workspace }}/out

0 comments on commit ebed699

Please sign in to comment.