File tree Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change
1
+ # .github/release.yml
2
+
3
+ changelog :
4
+ exclude :
5
+ labels :
6
+ - ignore-for-release
7
+ authors :
8
+ - dependabot[bot]
9
+ categories :
10
+ - title : Major Changes
11
+ labels :
12
+ - breaking-change
13
+ - title : Additional Features
14
+ labels :
15
+ - enhancement
16
+ - title : Bug Fixes
17
+ labels :
18
+ - " *"
Original file line number Diff line number Diff line change @@ -139,8 +139,12 @@ pipeline {
139
139
steps {
140
140
sh """
141
141
echo '${ env.GITHUB_API_TOKEN} ' | ${ GH_TOOL} /bin/gh auth login --with-token
142
- ${ GH_TOOL} /bin/gh release create ${ TAG_NAME} --draft --generate-notes --repo https://github.com/oracle/weblogic-image-tool
143
- ${ GH_TOOL} /bin/gh release upload ${ TAG_NAME} installer/target/imagetool.zip --repo https://github.com/oracle/weblogic-image-tool
142
+ ${ GH_TOOL} /bin/gh release create ${ TAG_NAME} \
143
+ --draft \
144
+ --generate-notes \
145
+ --title 'WebLogic Image Tool ${ TAG_NAME} ' \
146
+ --repo https://github.com/oracle/weblogic-image-tool \
147
+ installer/target/imagetool.zip
144
148
"""
145
149
}
146
150
}
You can’t perform that action at this time.
0 commit comments