File tree 2 files changed +3
-38
lines changed
2 files changed +3
-38
lines changed Original file line number Diff line number Diff line change 36
36
java-version : 17
37
37
distribution : adopt
38
38
39
- - name : Cache Gradle
40
- uses : actions/cache@v3
41
- with :
42
- path : |
43
- ~/.gradle/caches
44
- ~/.gradle/wrapper
45
- key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
46
- restore-keys : |
47
- ${{ runner.os }}-gradle-
48
-
49
39
- name : Gradle Wrapper Validation
50
40
uses : gradle/wrapper-validation-action@v1
51
41
76
66
java-version : 17
77
67
distribution : adopt
78
68
79
- - name : Cache Gradle
80
- uses : actions/cache@v3
81
- with :
82
- path : |
83
- ~/.gradle/caches
84
- ~/.gradle/wrapper
85
- key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
86
- restore-keys : |
87
- ${{ runner.os }}-gradle-
88
-
89
69
- name : Cache Konan
90
70
uses : actions/cache@v3
91
71
if : startsWith(matrix.config.os, 'macos')
Original file line number Diff line number Diff line change @@ -67,17 +67,12 @@ jobs:
67
67
- name : Update README for ${{ env.RELEASE_VERSION }}
68
68
run : ./.github/version.sh "${RELEASE_VERSION}"
69
69
70
- - name : Extract branch name
71
- shell : bash
72
- run : echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
73
- id : extract_branch
74
-
75
- - name : Commit changes to README to ${{ env.branch }}
70
+ - name : Commit changes to README
76
71
uses : EndBug/add-and-commit@v9
77
72
with :
78
73
add : " ./README.md"
79
74
message : " Update README.md with version ${{env.RELEASE_VERSION}}"
80
- new_branch : ${{ steps.extract_branch.outputs.branch }}
75
+ new_branch : main
81
76
82
77
documentation :
83
78
name : " Generate Documentation"
93
88
java-version : 17
94
89
distribution : adopt
95
90
96
- - name : Cache Gradle
97
- uses : actions/cache@v3
98
- with :
99
- path : |
100
- ~/.gradle/caches
101
- ~/.gradle/wrapper
102
- key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
103
- restore-keys : |
104
- ${{ runner.os }}-gradle-
105
-
106
91
- name : Gradle Wrapper Validation
107
92
uses : gradle/wrapper-validation-action@v1
108
93
114
99
- name : Deploy
115
100
uses : JamesIves/github-pages-deploy-action@v4
116
101
with :
117
- folder : dokka/
102
+ folder : dokka/
You can’t perform that action at this time.
0 commit comments