+1
-2
.easignore
+1
-2
.easignore
+2
.github/workflows/build-submit-android.yml
+2
.github/workflows/build-submit-android.yml
+2
.github/workflows/build-submit-ios.yml
+2
.github/workflows/build-submit-ios.yml
+6
-2
.github/workflows/bundle-deploy-eas-update.yml
+6
-2
.github/workflows/bundle-deploy-eas-update.yml
···
24
runs-on: ubuntu-latest
25
concurrency:
26
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}-deploy
27
-
cancel-in-progress: true
28
outputs:
29
fingerprint-is-different: ${{ steps.fingerprint-debug.outputs.fingerprint-is-different }}
30
···
68
- name: 🕵️ Get the base commit
69
id: base-commit
70
run: |
71
-
if [ -z "${{ inputs.channel == 'production' }}" ]; then
72
echo base-commit=$(git show-ref -s ${{ inputs.runtimeVersion }}) >> "$GITHUB_OUTPUT"
73
else
74
echo base-commit=${{ steps.last-successful-commit.base-commit }} >> "$GITHUB_OUTPUT"
···
184
185
- name: ⬇️ Checkout
186
uses: actions/checkout@v4
187
188
- name: 🔧 Setup Node
189
uses: actions/setup-node@v4
···
255
256
- name: ⬇️ Checkout
257
uses: actions/checkout@v4
258
259
- name: 🔧 Setup Node
260
uses: actions/setup-node@v4
···
24
runs-on: ubuntu-latest
25
concurrency:
26
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}-deploy
27
+
cancel-in-progress: false
28
outputs:
29
fingerprint-is-different: ${{ steps.fingerprint-debug.outputs.fingerprint-is-different }}
30
···
68
- name: 🕵️ Get the base commit
69
id: base-commit
70
run: |
71
+
if [ ${{ inputs.channel == 'production' }} ]; then
72
echo base-commit=$(git show-ref -s ${{ inputs.runtimeVersion }}) >> "$GITHUB_OUTPUT"
73
else
74
echo base-commit=${{ steps.last-successful-commit.base-commit }} >> "$GITHUB_OUTPUT"
···
184
185
- name: ⬇️ Checkout
186
uses: actions/checkout@v4
187
+
with:
188
+
fetch-depth: 5
189
190
- name: 🔧 Setup Node
191
uses: actions/setup-node@v4
···
257
258
- name: ⬇️ Checkout
259
uses: actions/checkout@v4
260
+
with:
261
+
fetch-depth: 5
262
263
- name: 🔧 Setup Node
264
uses: actions/setup-node@v4
+1
-2
src/lib/app-info.ts
+1
-2
src/lib/app-info.ts
···
6
7
// This is the commit hash that the current bundle was made from. The user can see the commit hash in the app's settings
8
// along with the other version info. Useful for debugging/reporting.
9
-
export const BUNDLE_IDENTIFIER =
10
-
process.env.EXPO_PUBLIC_BUNDLE_IDENTIFIER ?? 'dev'
11
12
// This will always be in the format of YYMMDD, so that it always increases for each build. This should only be used
13
// for Statsig reporting and shouldn't be used to identify a specific bundle.
···
6
7
// This is the commit hash that the current bundle was made from. The user can see the commit hash in the app's settings
8
// along with the other version info. Useful for debugging/reporting.
9
+
export const BUNDLE_IDENTIFIER = process.env.EXPO_PUBLIC_BUNDLE_IDENTIFIER ?? ''
10
11
// This will always be in the format of YYMMDD, so that it always increases for each build. This should only be used
12
// for Statsig reporting and shouldn't be used to identify a specific bundle.