Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
mkdir -p ./pr
echo ${{ github.event.number }} > ./pr/NR

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: pr
path: pr/
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,13 @@ jobs:
VERSION_CODE: ${{needs.common.outputs.VERSION_CODE}}

- name: Upload APK
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: APK Generated
path: build/app/outputs/flutter-apk

- name: Upload AAB Release
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: AAB Generated
path: build/app/outputs/bundle
Expand Down Expand Up @@ -284,7 +284,7 @@ jobs:
VERSION_CODE: ${{ needs.common.outputs.VERSION_CODE }}

- name: Upload Debian Build
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: Debian Build
path: build/linux/x64/release/bundle/
Expand Down Expand Up @@ -320,7 +320,7 @@ jobs:
VERSION_CODE: ${{ needs.common.outputs.VERSION_CODE }}

- name: Upload macOS Build
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: macOS Build
path: build/macos/Build/Products/Release/
Expand Down Expand Up @@ -360,7 +360,7 @@ jobs:
VERSION_CODE: ${{ needs.common.outputs.VERSION_CODE }}

- name: Upload Windows Build
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: Windows Build
path: build/windows/x64/runner/Release/
Expand Down
Loading