File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,6 @@ $(npm bin)/gulp docs
27
27
28
28
# Deploy the screenshot and dashboard functions for each push build.
29
29
./scripts/deploy/deploy-screenshot-functions.sh &
30
- ./scripts/deploy/deploy-dashboard-functions .sh &
30
+ ./scripts/deploy/deploy-dashboard.sh &
31
31
32
32
wait
Original file line number Diff line number Diff line change 6
6
# Go to the project root directory
7
7
cd $( dirname ${0} ) /../..
8
8
9
+ if [ -z ${MATERIAL2_BOARD_FIREBASE_DEPLOY_KEY} ]; then
10
+ echo " Error: No access token for firebase specified." \
11
+ " Please set the environment variable 'MATERIAL2_DASHBOARD_ACCESS_TOKEN'."
12
+ exit 1
13
+ fi
14
+
9
15
# Paths to the dashboard and functions directories.
10
16
dashboardFolder=tools/dashboard
11
17
@@ -23,12 +29,6 @@ cd ${dashboardFolder}
23
29
# build in production afterwards. Wait for all async tasks to finish before proceeding.
24
30
wait
25
31
26
- if [ -z ${MATERIAL2_BOARD_FIREBASE_DEPLOY_KEY} ]; then
27
- echo " Error: No access token for firebase specified." \
28
- " Please set the environment variable 'MATERIAL2_DASHBOARD_ACCESS_TOKEN'."
29
- exit 1
30
- fi
31
-
32
32
# Deploy the dashboard to Firebase. Based on the current configuration hosting and functions
33
33
# will be deployed.
34
34
$( npm bin) /firebase deploy --token ${MATERIAL2_BOARD_FIREBASE_DEPLOY_KEY} --project material2-board
Original file line number Diff line number Diff line change 2
2
3
3
set -e -o pipefail
4
4
5
- TUNNEL_FILE=" sc-4.4.6 -linux.tar.gz"
5
+ TUNNEL_FILE=" sc-4.4.7 -linux.tar.gz"
6
6
TUNNEL_URL=" https://saucelabs.com/downloads/${TUNNEL_FILE} "
7
7
TUNNEL_DIR=" /tmp/saucelabs-connect"
8
8
You can’t perform that action at this time.
0 commit comments