Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,10 @@ jobs:
- run:
name: Sync configuration to Firebase
command: |
docker run
--env FIREBASE_APP
--env FIREBASE_SECRET
popcode
docker run \
--env FIREBASE_APP \
--env FIREBASE_SECRET \
popcode \
yarn run gulp syncFirebase

deploy:
Expand All @@ -125,5 +125,5 @@ jobs:
name: Push image to Docker Hub
command: |
echo "$DOCKER_PASS" | docker login --username "$DOCKER_USER" --password-stdin
docker tag popcode popcodeorg/popcode
docker push popcodeorg/popcode
docker tag popcode popcodeorg/popcode:latest
docker push popcodeorg/popcode:latest
2 changes: 1 addition & 1 deletion .renovaterc.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
}
],
"postUpdateOptions": ["yarnDedupeFewer"],
"prConcurrentLimit": 3,
"prConcurrentLimit": 1,
"rebaseStalePrs": true,
"reviewers": ["outoftime"],
"schedule": "every weekend",
Expand Down