Skip to content

Commit

Permalink
Refactor GitHub Actions workflow to use actions/upload-artifact@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
JakubAndrysek committed Sep 22, 2024
1 parent 32dbe50 commit 49a640f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
cd ForrestHub-app
pyinstaller pyinstaller.spec
- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ForrestHub-${{ runner.os }}
path: ForrestHub-app/dist/ForrestHub*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
cd ForrestHub-app
pyinstaller pyinstaller.spec
- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ForrestHub-Windows
path: ForrestHub-app/dist/ForrestHub.exe
Expand All @@ -50,7 +50,7 @@ jobs:
cd ForrestHub-app
pyinstaller pyinstaller.spec
- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ForrestHub-macOS
path: ForrestHub-app/dist/ForrestHub

0 comments on commit 49a640f

Please sign in to comment.