Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-02-14 11:49:58 +08:00
parent c70c9829c0
commit 96727469ac
5 changed files with 13 additions and 13 deletions

View File

@@ -92,12 +92,12 @@ jobs:
- name: apply bottom sheet patch
working-directory: ${{ env.FLUTTER_ROOT }}
run: git apply $GITHUB_WORKSPACE/lib/scripts/bottom_sheet_patch.diff
run: git apply $GITHUB_WORKSPACE/lib/scripts/bottom_sheet_patch.diff || true
continue-on-error: true
- name: apply modal barrier patch
working-directory: ${{ env.FLUTTER_ROOT }}
run: git apply $GITHUB_WORKSPACE/lib/scripts/modal-barrier-patch.diff
run: git apply $GITHUB_WORKSPACE/lib/scripts/modal-barrier-patch.diff || true
continue-on-error: true
- name: Write key

View File

@@ -32,7 +32,7 @@ jobs:
- name: apply modal barrier patch
working-directory: ${{ env.FLUTTER_ROOT }}
run: git apply $GITHUB_WORKSPACE/lib/scripts/modal-barrier-patch.diff
run: git apply $GITHUB_WORKSPACE/lib/scripts/modal-barrier-patch.diff || true
continue-on-error: true
- name: Build iOS

View File

@@ -53,7 +53,7 @@ jobs:
- name: apply modal barrier patch
working-directory: ${{ env.FLUTTER_ROOT }}
run: git apply $GITHUB_WORKSPACE/lib/scripts/modal-barrier-patch.diff
run: git apply $GITHUB_WORKSPACE/lib/scripts/modal-barrier-patch.diff || true
continue-on-error: true
#TODO: deb and rpm packages need to be build

View File

@@ -32,7 +32,7 @@ jobs:
- name: apply modal barrier patch
working-directory: ${{ env.FLUTTER_ROOT }}
run: git apply $GITHUB_WORKSPACE/lib/scripts/modal-barrier-patch.diff
run: git apply $GITHUB_WORKSPACE/lib/scripts/modal-barrier-patch.diff || true
continue-on-error: true
- name: Build Mac
@@ -41,7 +41,7 @@ jobs:
- name: Prepare Upload
run: |
npm install --global create-dmg
create-dmg build/macos/Build/Products/Release/PiliPlus.app
create-dmg build/macos/Build/Products/Release/PiliPlus.app || true
continue-on-error: true
- name: Rename DMG

View File

@@ -28,7 +28,7 @@ jobs:
- name: apply modal barrier patch
working-directory: ${{ env.FLUTTER_ROOT }}
run: git apply $env:GITHUB_WORKSPACE\lib\scripts\modal-barrier-patch.diff
run: git apply $env:GITHUB_WORKSPACE\lib\scripts\modal-barrier-patch.diff || true
shell: pwsh
continue-on-error: true