This commit is contained in:
Core 2022-05-02 05:18:01 +01:00
parent 6940c8bf7e
commit 4c2d64ef0d
No known key found for this signature in database
GPG key ID: FE9BF1B547F8F3C6
2 changed files with 2 additions and 3 deletions

View file

@ -15,7 +15,6 @@ jobs:
executor: cider-ci executor: cider-ci
steps: steps:
- checkout - checkout
- run: ls -la
- run: - run:
name: Set App Version name: Set App Version
command: echo "export APP_VERSION=$(grep '"version":.*' package.json | cut -d '"' -f 4 | head -1)" >> $BASH_ENV command: echo "export APP_VERSION=$(grep '"version":.*' package.json | cut -d '"' -f 4 | head -1)" >> $BASH_ENV
@ -27,7 +26,7 @@ jobs:
keys: keys:
- yarn-packages-{{ checksum "cider.lock" }} - yarn-packages-{{ checksum "cider.lock" }}
- run: - run:
name: Install Dependencies name: Install Node Dependencies
command: yarn install --frozen-lockfile --cache-folder ~/.cache/yarn command: yarn install --frozen-lockfile --cache-folder ~/.cache/yarn
- save_cache: - save_cache:
name: Save Yarn Package Cache name: Save Yarn Package Cache

View file

@ -21,7 +21,7 @@ if (process.env['CIRCLE_BRANCH'] === 'lts') {
} }
if (channel.concat('/')) { if (channel.includes('/')) {
channel.replace('/', '-') channel.replace('/', '-')
} }