Skip to content

Commit 2aca7a3

Browse files
Trying to work around issues with checking out tags
1 parent ac6c421 commit 2aca7a3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/io/micrometer/release/train/Git.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class Git {
3030
void changeTag(String tag) {
3131
log.info("Changing git head to tag [{}]", tag);
3232
processRunner.run("git", "fetch", "origin", "refs/tags/" + tag);
33-
processRunner.run("git", "checkout", tag);
33+
processRunner.run("git", "checkout", "FETCH_HEAD");
3434
}
3535

3636
}

src/test/java/io/micrometer/release/train/GitTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ void should_checkout_tag() {
3030
git.changeTag("v1.2.3");
3131

3232
then(processRunner).should().run("git", "fetch", "origin", "refs/tags/v1.2.3");
33-
then(processRunner).should().run("git", "checkout", "v1.2.3");
33+
then(processRunner).should().run("git", "checkout", "FETCH_HEAD");
3434
}
3535

3636
}

0 commit comments

Comments
 (0)