Skip to content

Commit

Permalink
Bump version again
Browse files Browse the repository at this point in the history
  • Loading branch information
sukhpalp committed Jul 26, 2023
1 parent 0d800dc commit 84252b1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
cache-dependency-path: '**/package.json'

- name: Configure ruby
uses: ruby/setup-ruby@v1
Expand All @@ -130,7 +132,9 @@ jobs:

- name: Install app dependencies
working-directory: ${{ env.ANGULAR_DIRECTORY }}
run: npm install --legacy-peer-deps
run: |
export NODE_OPTIONS="--max_old_space_size=4096"
npm install --legacy-peer-deps
- name: Prepare app for build
working-directory: ${{ env.ANGULAR_DIRECTORY }}
Expand Down
4 changes: 2 additions & 2 deletions client/wfnews-war/src/main/angular/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
applicationId "ca.bc.gov.WildfireInformation"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 153
versionName "1.7.1"
versionCode 154
versionName "1.8.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down

0 comments on commit 84252b1

Please sign in to comment.