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
6 changes: 3 additions & 3 deletions .github/workflows/branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
run: flutter build apk --dart-define=COMMIT_SHA=${{ github.sha }} --dart-define=flutter.flutter_map.unblockOSM="${{ secrets.UNBLOCK_OSM }}"
- name: Archive Artifact
if: ${{ matrix.sdk == '' }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: apk-build
path: example/build/app/outputs/apk/release
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
working-directory: .
- name: Archive Artifact
if: ${{ matrix.sdk == '' }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: exe-build
path: windowsTemp/WindowsApplication.exe
Expand All @@ -156,7 +156,7 @@ jobs:
- name: Build Web Application
run: flutter build web --wasm --dart-define=COMMIT_SHA=${{ github.sha }} --dart-define=flutter.flutter_map.unblockOSM="${{ secrets.UNBLOCK_OSM }}"
- name: Archive Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: ${{ matrix.sdk == '' }}
with:
name: web-build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Build Android Application
run: flutter build apk --dart-define=COMMIT_SHA=${{ github.sha }} --dart-define=flutter.flutter_map.unblockOSM="${{ secrets.UNBLOCK_OSM }}"
- name: Archive Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: apk-build
path: example/build/app/outputs/apk/release
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
run: iscc "windowsApplicationInstallerSetup.iss"
working-directory: .
- name: Archive Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: exe-build
path: windowsTemp/WindowsApplication.exe
Expand All @@ -107,7 +107,7 @@ jobs:
- name: Build Web Application
run: flutter build web --wasm --dart-define=COMMIT_SHA=${{ github.sha }} --dart-define=flutter.flutter_map.unblockOSM="${{ secrets.UNBLOCK_OSM }}"
- name: Archive Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: web-build
path: example/build/web
Expand Down