Skip to content

Commit b7aa707

Browse files
committed
Add deps steps to release build CI
1 parent b9dc12c commit b7aa707

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/tagged-release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,9 @@ jobs:
127127
- name: Grant execute permission for gradlew
128128
run: chmod +x gradlew
129129

130+
- name: Gradle Dependencies
131+
run: ./gradlew --refresh-dependencies
132+
130133
- name: Build JAR with Gradle
131134
run: ./gradlew build
132135
env:
@@ -213,6 +216,9 @@ jobs:
213216
with:
214217
java-version: "8.0.282"
215218

219+
- name: Gradle Dependencies
220+
run: ./gradlew --refresh-dependencies
221+
216222
- name: Publish package
217223
run: ./gradlew publish
218224
env:

.github/workflows/test-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124

125125
- name: Gradle Dependencies
126126
run: ./gradlew --refresh-dependencies
127-
127+
128128
- name: Build JAR with Gradle
129129
run: ./gradlew build
130130
# run: ./gradlew publish

0 commit comments

Comments
 (0)