Skip to content

Commit 437e8f1

Browse files
authored
Fix deploy phase errors (#2433)
* Fix deploy phase errors * Only one concurrent Renovate PR
1 parent b11ba56 commit 437e8f1

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,10 @@ jobs:
9595
- run:
9696
name: Sync configuration to Firebase
9797
command: |
98-
docker run
99-
--env FIREBASE_APP
100-
--env FIREBASE_SECRET
101-
popcode
98+
docker run \
99+
--env FIREBASE_APP \
100+
--env FIREBASE_SECRET \
101+
popcode \
102102
yarn run gulp syncFirebase
103103
104104
deploy:
@@ -125,5 +125,5 @@ jobs:
125125
name: Push image to Docker Hub
126126
command: |
127127
echo "$DOCKER_PASS" | docker login --username "$DOCKER_USER" --password-stdin
128-
docker tag popcode popcodeorg/popcode
129-
docker push popcodeorg/popcode
128+
docker tag popcode popcodeorg/popcode:latest
129+
docker push popcodeorg/popcode:latest

.renovaterc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
}
147147
],
148148
"postUpdateOptions": ["yarnDedupeFewer"],
149-
"prConcurrentLimit": 3,
149+
"prConcurrentLimit": 1,
150150
"rebaseStalePrs": true,
151151
"reviewers": ["outoftime"],
152152
"schedule": "every weekend",

0 commit comments

Comments
 (0)