File tree Expand file tree Collapse file tree 2 files changed +20
-29
lines changed Expand file tree Collapse file tree 2 files changed +20
-29
lines changed Original file line number Diff line number Diff line change @@ -140,15 +140,6 @@ jobs:
140
140
path : lib-extra/build/test-results/test
141
141
- store_test_results :
142
142
path : plugin-gradle/build/test-results/test
143
- changelog_print :
144
- << : *env_gradle
145
- steps :
146
- - checkout
147
- - *restore_cache_wrapper
148
- - *restore_cache_deps
149
- - run :
150
- name : gradlew changelogPrint
151
- command : ./gradlew changelogPrint
152
143
do_release_all :
153
144
<< : *env_gradle
154
145
steps :
@@ -276,46 +267,26 @@ workflows:
276
267
- assemble_testClasses
277
268
deploy :
278
269
jobs :
279
- - changelog_print :
280
- filters :
281
- branches :
282
- only : main
283
270
- release_all :
284
271
type : approval
285
- requires :
286
- - changelog_print
287
272
- do_release_all :
288
273
requires :
289
274
- release_all
290
- context :
291
- - SonatypeDeploy
292
275
- release_plugin_gradle :
293
276
type : approval
294
- requires :
295
- - changelog_print
296
277
- do_release_plugin_gradle :
297
278
requires :
298
279
- release_plugin_gradle
299
- context :
300
- - SonatypeDeploy
301
280
- release_plugin_maven :
302
281
type : approval
303
- requires :
304
- - changelog_print
305
282
- do_release_plugin_maven :
306
283
requires :
307
284
- release_plugin_maven
308
- context :
309
- - SonatypeDeploy
310
285
- release_lib :
311
286
type : approval
312
- requires :
313
- - changelog_print
314
287
- do_release_lib :
315
288
requires :
316
289
- release_lib
317
- context :
318
- - SonatypeDeploy
319
290
ext_deploy :
320
291
jobs :
321
292
- ext_changelog_print :
Original file line number Diff line number Diff line change
1
+ name : changelogPrint
2
+
3
+ on :
4
+ push :
5
+ branches : [main]
6
+
7
+ jobs :
8
+ build :
9
+ runs-on : ubuntu-latest
10
+ name : changelogPrint
11
+ steps :
12
+ - uses : actions/checkout@v3
13
+ - name : jdk 11
14
+ uses : actions/setup-java@v3
15
+ with :
16
+ java-version : 11
17
+ distribution : ' temurin'
18
+ - name : gradle caching
19
+ uses : gradle/gradle-build-action@v2
20
+ - run : ./gradlew changelogPrint
You can’t perform that action at this time.
0 commit comments