Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Codel1417 committed Nov 24, 2024
2 parents c417a0c + 8ed8845 commit 8141416
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/actions/build_android/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ runs:
env:
ANDROID_KEY_JKS: ${{ inputs.android-key-jks }}
- name: Build APK
if: ${{ inputs.build-mode }} == 'apk'
if: inputs.build-mode == 'apk'
shell: bash
run: flutter build apk --split-debug-info=./symbols --build-number="$BUILD_NUMBER" --build-name="$VERSION" --dart-define=SENTRY_DSN="$SENTRY_DSN" --dart-define=cronetHttpNoPlay=true
env:
Expand All @@ -59,7 +59,7 @@ runs:
SENTRY_DSN: ${{ inputs.sentry-dsn }}
#SENTRY_URL: ${{ inputs.sentry-url }}
- name: Build AppBundle
if: ${{ inputs.build-mode }} == 'bundle'
if: inputs.build-mode == 'bundle'
shell: bash
run: flutter build appbundle --split-debug-info=./symbols --build-number="$BUILD_NUMBER" --build-name="$VERSION" --dart-define=SENTRY_DSN="$SENTRY_DSN"
env:
Expand All @@ -76,7 +76,7 @@ runs:
run: cd android && ./gradlew app:dependencies --configuration releaseCompileClasspath
- uses: actions/upload-artifact@v4
continue-on-error: true
if: runner.os == 'Linux' && ${{ inputs.build-mode }} == 'apk'
if: runner.os == 'Linux' && inputs.build-mode == 'apk'
with:
name: artifact-${{ runner.os }}
path: build/app/outputs/apk
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
build-mode: ${{ matrix.build }}
#sentry-url: ${{ secrets.SENTRY_URL }}
- name: Build IOS / Upload Beta
if: github.event_name == 'push' && ${{ matrix.build }} != 'apk'
if: github.event_name == 'push' && matrix.build != 'apk'
run: bash ${GITHUB_WORKSPACE}/Scripts/fastlane.sh
working-directory: Scripts
continue-on-error: false
Expand Down

0 comments on commit 8141416

Please sign in to comment.