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
12 changes: 6 additions & 6 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
run: dart format .

- name: Upload generated code
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: generated-code
path: lib/**/*.g.dart
Expand Down Expand Up @@ -310,7 +310,7 @@ jobs:
run: flutter build windows --release

- name: Upload build artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: windows-build-${{ github.sha }}
path: build/windows/x64/runner/Release/
Expand Down Expand Up @@ -365,7 +365,7 @@ jobs:
run: flutter build macos --release

- name: Upload build artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: macos-build-${{ github.sha }}
path: build/macos/Build/Products/Release/
Expand Down Expand Up @@ -416,7 +416,7 @@ jobs:
run: flutter build linux --release

- name: Upload build artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: linux-build-${{ github.sha }}
path: build/linux/x64/release/bundle/
Expand Down Expand Up @@ -483,7 +483,7 @@ jobs:
run: flutter build apk --release

- name: Upload build artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: android-build-${{ github.sha }}
path: build/app/outputs/flutter-apk/app-release.apk
Expand Down Expand Up @@ -538,7 +538,7 @@ jobs:
run: flutter build ios --release --no-codesign

- name: Upload build artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: ios-build-${{ github.sha }}
path: build/ios/iphoneos/
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
run: dart format .

- name: Upload generated code
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: generated-code
path: lib/**/*.g.dart
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
& "C:\Program Files (x86)\Inno Setup 6\ISCC.exe" installer.iss

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: windows-release
path: |
Expand Down Expand Up @@ -301,7 +301,7 @@ jobs:
zip -r "../../../../../release/${{ env.APP_NAME }}-${VERSION}-macos-universal.zip" "$APP_BASENAME"

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: macos-release
path: release/
Expand Down Expand Up @@ -407,7 +407,7 @@ jobs:
ARCH=x86_64 ./appimagetool AppDir "release/${{ env.APP_NAME }}-${VERSION}-linux-x64.AppImage" || true

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: linux-release
path: release/
Expand Down Expand Up @@ -490,7 +490,7 @@ jobs:
"release/${{ env.APP_NAME }}-${VERSION}-android.aab"

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: android-release
path: release/
Expand Down Expand Up @@ -559,7 +559,7 @@ jobs:
rm -rf Payload

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: ios-release
path: release/
Expand Down
Loading