Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin2/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
pixkk committed Jan 13, 2025
2 parents 82476b0 + d309ecf commit 0d46619
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/canary_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:
- name: Set App Version
working-directory: NUXT
run: sed -i 's/dev-local/${{ inputs.versionNumber }}/' nuxt.config.js
- name: Set App Version in build.gradle
working-directory: android/app
run: sed -i 's/dev-local/${{ inputs.versionNumber }}/' build.gradle
- name: Build web assets
working-directory: NUXT
run: npm run generate
Expand Down Expand Up @@ -95,7 +98,7 @@ jobs:
- name: Set up XCode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
xcode-version: 16.1.0
- name: Add `GoogleService-Info.plist`
run: echo "${{ env.GOOGLE_SERVICE_INFO_PLIST }}" > ios/App/App/GoogleService-Info.plist
- name: Build and archive with xcodebuild
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ jobs:
- name: Set App Version
working-directory: NUXT
run: sed -i 's/dev-local/${{ github.sha }}/' nuxt.config.js
- name: Set App Version in build.gradle
working-directory: android/app
run: sed -i 's/dev-local/${{ inputs.versionNumber }}/' build.gradle
- name: Build web assets
working-directory: NUXT
run: npm run generate
Expand Down Expand Up @@ -93,7 +96,7 @@ jobs:
- name: Set up XCode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
xcode-version: 16.1.0
- name: Add `GoogleService-Info.plist`
run: echo "${{ env.GOOGLE_SERVICE_INFO_PLIST }}" > ios/App/App/GoogleService-Info.plist
- name: Build and archive with xcodebuild
Expand Down

0 comments on commit 0d46619

Please sign in to comment.