mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 03:06:59 +08:00
2
.github/workflows/ios.yml
vendored
2
.github/workflows/ios.yml
vendored
@@ -46,7 +46,7 @@ jobs:
|
||||
ln -sf ./build/ios/iphoneos Payload
|
||||
# make AltSign happy...
|
||||
find Payload/Runner.app/Frameworks -type d -name "*.framework" -exec codesign --force --sign - --preserve-metadata=identifier,entitlements {} \;
|
||||
zip -r9 PiliPlus_ios_${{env.version}}.ipa Payload/runner.app
|
||||
zip -r9 PiliPlus_ios_${{env.version}}.ipa Payload/Runner.app
|
||||
|
||||
- name: Release
|
||||
if: ${{ github.event.inputs.tag != '' }}
|
||||
|
||||
11
.github/workflows/linux_x64.yml
vendored
11
.github/workflows/linux_x64.yml
vendored
@@ -51,6 +51,17 @@ jobs:
|
||||
shell: pwsh
|
||||
run: lib/scripts/build.ps1
|
||||
|
||||
- name: pick tooltip fix
|
||||
working-directory: ${{ env.FLUTTER_ROOT }}
|
||||
run: |
|
||||
git config --global user.name "ci"
|
||||
git config --global user.email "example@example.com"
|
||||
git stash || true
|
||||
git cherry-pick 56956c33ef102ac0b5fc46b62bd2dd9f50a86616 --no-edit
|
||||
git reset --soft HEAD~1
|
||||
git stash pop || 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 || true
|
||||
|
||||
11
.github/workflows/mac.yml
vendored
11
.github/workflows/mac.yml
vendored
@@ -30,6 +30,17 @@ jobs:
|
||||
shell: pwsh
|
||||
run: lib/scripts/build.ps1
|
||||
|
||||
- name: pick tooltip fix
|
||||
working-directory: ${{ env.FLUTTER_ROOT }}
|
||||
run: |
|
||||
git config --global user.name "ci"
|
||||
git config --global user.email "example@example.com"
|
||||
git stash || true
|
||||
git cherry-pick 56956c33ef102ac0b5fc46b62bd2dd9f50a86616 --no-edit
|
||||
git reset --soft HEAD~1
|
||||
git stash pop || 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 || true
|
||||
|
||||
11
.github/workflows/win_x64.yml
vendored
11
.github/workflows/win_x64.yml
vendored
@@ -26,6 +26,17 @@ jobs:
|
||||
channel: stable
|
||||
flutter-version-file: pubspec.yaml
|
||||
|
||||
- name: pick tooltip fix
|
||||
working-directory: ${{ env.FLUTTER_ROOT }}
|
||||
run: |
|
||||
git config --global user.name "ci"
|
||||
git config --global user.email "example@example.com"
|
||||
git stash || true
|
||||
git cherry-pick 56956c33ef102ac0b5fc46b62bd2dd9f50a86616 --no-edit
|
||||
git reset --soft HEAD~1
|
||||
git stash pop || true
|
||||
continue-on-error: true
|
||||
|
||||
- name: apply modal barrier patch
|
||||
working-directory: ${{ env.FLUTTER_ROOT }}
|
||||
run: git apply $env:GITHUB_WORKSPACE\lib\scripts\modal_barrier_patch.diff || true
|
||||
|
||||
Reference in New Issue
Block a user