From 4f098d9704412f5c3d3a4bcb0b0254f2e637c33c Mon Sep 17 00:00:00 2001 From: Mo Date: Thu, 9 Jun 2022 12:02:27 -0500 Subject: [PATCH] chore: workflows --- .github/workflows/mobile.build-dev.yml | 5 ++++- .github/workflows/mobile.build-prod.yml | 7 +++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/mobile.build-dev.yml b/.github/workflows/mobile.build-dev.yml index a67d520b4..97b790b00 100644 --- a/.github/workflows/mobile.build-dev.yml +++ b/.github/workflows/mobile.build-dev.yml @@ -43,6 +43,7 @@ jobs: GOOGLE_PLAY_JSON_KEY_DATA: ${{ secrets.GOOGLE_PLAY_JSON_KEY_DATA }} with: lane: 'android dev' + subdirectory: 'packages/mobile' - name: Upload universal apk to artifacts uses: actions/upload-artifact@v2 with: @@ -51,7 +52,7 @@ jobs: ios: defaults: run: - working-directory: ./packages/mobile + working-directory: packages/mobile runs-on: macos-11 timeout-minutes: 90 if: "!contains(github.event.head_commit.message, 'skip ci')" @@ -79,6 +80,7 @@ jobs: MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }} with: lane: 'ios setup' + subdirectory: 'packages/mobile' - name: fastlane uses: maierj/fastlane-action@v1.4.0 env: @@ -96,3 +98,4 @@ jobs: BUILD_NUMBER: ${{ github.run_number }} with: lane: 'ios dev' + subdirectory: 'packages/mobile' diff --git a/.github/workflows/mobile.build-prod.yml b/.github/workflows/mobile.build-prod.yml index d73935cec..58e87a2ea 100644 --- a/.github/workflows/mobile.build-prod.yml +++ b/.github/workflows/mobile.build-prod.yml @@ -6,7 +6,7 @@ jobs: android: defaults: run: - working-directory: ./packages/mobile + working-directory: packages/mobile runs-on: ubuntu-latest timeout-minutes: 45 steps: @@ -36,6 +36,7 @@ jobs: GOOGLE_PLAY_JSON_KEY_DATA: ${{ secrets.GOOGLE_PLAY_JSON_KEY_DATA }} with: lane: 'android prod' + subdirectory: 'packages/mobile' - name: Upload universal apk to artifacts uses: actions/upload-artifact@v2 with: @@ -49,7 +50,7 @@ jobs: ios: defaults: run: - working-directory: ./packages/mobile + working-directory: packages/mobile runs-on: macos-11 timeout-minutes: 90 steps: @@ -76,6 +77,7 @@ jobs: MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }} with: lane: 'ios setup' + subdirectory: 'packages/mobile' - name: fastlane uses: maierj/fastlane-action@v1.4.0 env: @@ -93,4 +95,5 @@ jobs: BUILD_NUMBER: ${{ github.run_number }} with: lane: 'ios prod' + subdirectory: 'packages/mobile'