Skip to content

Commit d7d1518

Browse files
authored
Re-activate deploy (#9466)
1 parent feb69b1 commit d7d1518

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

Taskfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ tasks:
5757
cmds:
5858
- dir=$(mktemp -d);
5959
cp -r "./build" "${dir}/docs";
60-
echo aws s3 sync "${dir}" "s3://{{.BUCKET}}/" --delete;
60+
aws s3 sync "${dir}" "s3://{{.BUCKET}}/" --delete;
6161
rm -rf "${dir}";
6262

6363
deploy-redirects:

renovate.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": [
4-
"local>circleci/renovate-config"
4+
"config:recommended"
5+
],
6+
"timezone": "Europe/London",
7+
"packageRules": [
8+
{
9+
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
10+
"automerge": true,
11+
"automergeStrategy": "squash",
12+
"automergeSchedule": [
13+
"after 9am and before 12pm on monday",
14+
"after 9am and before 12pm on tuesday",
15+
"after 9am and before 12pm on wednesday",
16+
"after 9am and before 12pm on thursday"
17+
]
18+
}
519
]
620
}

0 commit comments

Comments
 (0)