Skip to content

Commit 3049b00

Browse files
Merge pull request #126 from blacksky-algorithms/fix/ci-ota-clean-tree
2 parents 29b1e33 + 9e32dc4 commit 3049b00

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/build-submit-android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
build:
3333
if: github.repository == 'blacksky-algorithms/blacksky.community'
3434
name: Build and Submit Android
35-
runs-on: Linux-x64-32core
35+
runs-on: ubuntu-latest
3636
concurrency:
3737
group: android-build
3838
cancel-in-progress: false

.github/workflows/bundle-deploy-eas-update.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ jobs:
7676
previous-commit-tag: ${{ inputs.runtimeVersion }}
7777

7878
- name: 🔤 Compile translations
79-
run: pnpm intl:build 2>&1 | tee i18n.log
79+
run: pnpm intl:build 2>&1 | tee /tmp/i18n.log
8080

8181
- name: Check for i18n compilation errors
82-
run: if grep -q "invalid syntax" "i18n.log"; then echo "\n\nFound compilation
82+
run: if grep -q "invalid syntax" "/tmp/i18n.log"; then echo "\n\nFound compilation
8383
errors!\n\n" && exit 1; else echo "\n\nNo compilation errors!\n\n"; fi
8484

8585
- name: Lint check
@@ -134,6 +134,7 @@ jobs:
134134
--dumpSourcemap
135135
--message="${{ github.event.head_commit.message || github.sha }}"
136136
env:
137+
EAS_NO_VCS: '1'
137138
EXPO_TOKEN: ${{ secrets.EXPO_TOKEN }}
138139
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
139140
SENTRY_RELEASE: ${{ steps.env.outputs.EXPO_PUBLIC_RELEASE_VERSION }}

0 commit comments

Comments
 (0)