Skip to content

Commit d474f8d

Browse files
authored
Fix: folder is not a git repository (#432)
1 parent 1e64d0b commit d474f8d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.ci/Jenkinsfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,9 @@ pipeline {
7474
}
7575
steps {
7676
withCredentials([string(credentialsId: "${GITHUB_TOKEN_CREDENTIALS}", variable: 'GITHUB_TOKEN')]) {
77-
sh 'curl -sL https://git.io/goreleaser | bash'
77+
dir("${BASE_DIR}") {
78+
sh 'curl -sL https://git.io/goreleaser | bash'
79+
}
7880
}
7981
}
8082
}

0 commit comments

Comments
 (0)