chore: remove alpha/beta strings from mobile release version strings

This commit is contained in:
Mo
2022-06-15 20:36:39 -05:00
parent d11e0aa41a
commit 05c56a5235
2 changed files with 4 additions and 4 deletions

View File

@@ -18,7 +18,7 @@ jobs:
uses: actions/checkout@v2
- name: Export version from package.json
run:
echo "PACKAGE_VERSION=$(grep '"version"' package.json | cut -d '"' -f 4)" >> $GITHUB_ENV
echo "PACKAGE_VERSION=$(grep '"version"' package.json | cut -d '"' -f 4 | cut -d "-" -f 1)" >> $GITHUB_ENV
- name: Setup react-native kernel and increase watchers
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
- name: Decode Production Android keystore
@@ -63,7 +63,7 @@ jobs:
uses: actions/checkout@v2
- name: Export version from package.json
run:
echo "PACKAGE_VERSION=$(grep '"version"' package.json | cut -d '"' -f 4)" >> $GITHUB_ENV
echo "PACKAGE_VERSION=$(grep '"version"' package.json | cut -d '"' -f 4 | cut -d "-" -f 1)" >> $GITHUB_ENV
- name: Install dependencies
run: yarn install && yarn install:pods
- run: yarn build:mobile