Skip to content

Commit 50ff768

Browse files
committed
+semver: breaking | Release 21.0
1 parent 7d93623 commit 50ff768

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ orbs:
44
jobs:
55
build:
66
docker:
7-
- image: ocelot2/circleci-build:latest
7+
- image: ocelot2/circleci-build:8.21.0
88
steps:
99
- checkout
1010
- run: dotnet tool restore && dotnet cake
1111
release:
1212
docker:
13-
- image: ocelot2/circleci-build:latest
13+
- image: ocelot2/circleci-build:8.21.0
1414
steps:
1515
- checkout
1616
- run: dotnet tool restore && dotnet cake --target=Release

.config/dotnet-tools.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"cake.tool": {
6-
"version": "3.0.0",
6+
"version": "4.0.0",
77
"commands": [
88
"dotnet-cake"
99
]
@@ -15,4 +15,4 @@
1515
]
1616
}
1717
}
18-
}
18+
}

build.cake

+1-1
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ Task("CreateReleaseNotes")
312312

313313
private void WriteReleaseNotes()
314314
{
315-
Information($"RUNNING {nameof(WriteReleaseNotes)} ...");
315+
Information($"RUN {nameof(WriteReleaseNotes)} ...");
316316

317317
EnsureDirectoryExists(packagesDir);
318318
System.IO.File.WriteAllLines(releaseNotesFile, releaseNotes);

docker/Dockerfile.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# docker build --platform linux/arm64 --build-arg OCELOT_COVERALLS_TOKEN=$OCELOT_COVERALLS_TOKEN -f ./docker/Dockerfile.build .
33
# docker build --platform linux/amd64 --build-arg OCELOT_COVERALLS_TOKEN=$OCELOT_COVERALLS_TOKEN -f ./docker/Dockerfile.build .
44

5-
FROM ocelot2/circleci-build:latest
5+
FROM ocelot2/circleci-build:8.21.0
66

77
ARG OCELOT_COVERALLS_TOKEN
88

docker/Dockerfile.release

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# docker build --platform linux/arm64 --build-arg OCELOT_COVERALLS_TOKEN=$OCELOT_COVERALLS_TOKEN --build-arg OCELOT_GITHUB_API_KEY=$OCELOT_GITHUB_API_KEY --build-arg OCELOT_COVERALLS_TOKEN=$OCELOT_COVERALLS_TOKEN -f ./docker/Dockerfile.build .
33
# docker build --platform linux/amd64 --build-arg OCELOT_COVERALLS_TOKEN=$OCELOT_COVERALLS_TOKEN --build-arg OCELOT_GITHUB_API_KEY=$OCELOT_GITHUB_API_KEY --build-arg OCELOT_COVERALLS_TOKEN=$OCELOT_COVERALLS_TOKEN -f ./docker/Dockerfile.build .
44

5-
FROM ocelot2/circleci-build:latest
5+
FROM ocelot2/circleci-build:8.21.0
66

77
ARG OCELOT_COVERALLS_TOKEN
88
ARG OCELOT_NUTGET_API_KEY

0 commit comments

Comments
 (0)