We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1fede2 commit b33ebb2Copy full SHA for b33ebb2
.github/workflows/main.yml
@@ -16,9 +16,11 @@ jobs:
16
- name: Set up JDK 16
17
uses: actions/setup-java@v1
18
with:
19
- java-version: 16
+ distribution: 'temurin'
20
+ java-version: '16'
21
+ cache: 'gradle'
22
- name: Mavenを使ってビルド
- run: mvn --batch-mode --update-snapshots verify versions:set -DnewVersion=${{ github.run_number }}
23
+ run: mvn -B package versions:set -DnewVersion=${{ github.run_number }}
24
- name: original-*.jarを削除
25
run: rm target/original-*.jar
26
- name: パッケージをビルドの成果物としてリリース
0 commit comments