File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ jobs:
17
17
steps :
18
18
- name : Checkout Repo
19
19
uses : actions/checkout@master
20
- - name : Set up Node (12 )
20
+ - name : Set up Node (14 )
21
21
uses : actions/setup-node@v2
22
22
with :
23
- node-version : 12 .x
23
+ node-version : 14 .x
24
24
- name : install Chrome stable
25
25
run : |
26
26
sudo apt-get update
Original file line number Diff line number Diff line change @@ -121,11 +121,12 @@ jobs:
121
121
VERSION_SCRIPT="const pkg = require('./packages/firebase/package.json'); console.log(pkg.version);"
122
122
VERSION=`node -e "${VERSION_SCRIPT}"`
123
123
echo "::set-output name=STAGING_VERSION::$VERSION"
124
- BASE_VERSION=$(echo ${{ steps.get-version.outputs.STAGING_VERSION }} | cut -d "-" -f 1)
124
+ BASE_VERSION=$(echo $VERSION | cut -d "-" -f 1)
125
125
echo "::set-output name=BASE_VERSION::$BASE_VERSION"
126
- - name : Echo version in shell
126
+ - name : Echo versions in shell
127
127
run : |
128
128
echo "Staging release ${{ steps.get-version.outputs.STAGING_VERSION }}"
129
+ echo "Base version: ${{ steps.get-version.outputs.BASE_VERSION }}"
129
130
- name : Launch E2E tests workflow
130
131
# Trigger e2e-test.yml
131
132
run : |
You can’t perform that action at this time.
0 commit comments