File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,10 @@ workflow(
56
56
57
57
val MAJOR_VERSION_OUTPUT_NAME = " majorVersion"
58
58
59
- val extractMajorVersion = run {
59
+ val extractMajorVersion = run (
60
+ name = " Extract major version" ,
61
+ workingDirectory = " github-actions-typing" ,
62
+ ) {
60
63
// There should be a way to access the inputs using the DSL.
61
64
// TODO: https://github.com/typesafegithub/github-workflows-kt/issues/1685
62
65
val githubContextJson = System .getenv(" GHWKT_GITHUB_CONTEXT_JSON" )!!
Original file line number Diff line number Diff line change 77
77
git tag -a "${{ github.event.inputs.version }}" -m "Release version ${{ github.event.inputs.version }}"
78
78
git push origin "${{ github.event.inputs.version }}"
79
79
- id : ' step-9'
80
+ name : ' Extract major version'
80
81
env :
81
82
GHWKT_GITHUB_CONTEXT_JSON : ' ${{ toJSON(github) }}'
83
+ working-directory : ' github-actions-typing'
82
84
run : ' GHWKT_RUN_STEP='' release:step-9'' '' .github/workflows/release.main.kts'' '
83
85
- id : ' step-10'
84
86
name : ' Create or update a major version branch'
You can’t perform that action at this time.
0 commit comments