We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fc1f9b commit f664061Copy full SHA for f664061
.github/workflows/release.yml
@@ -0,0 +1,33 @@
1
+name: Release
2
+
3
+on:
4
+ push:
5
+ branches: [ "master" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ permissions: write-all
13
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - name: チェックアウト
18
+ uses: actions/checkout@v3
19
+ - name: JDK 17をセットアップ
20
+ uses: actions/setup-java@v3
21
+ with:
22
+ java-version: '17'
23
+ distribution: 'temurin'
24
+ cache: maven
25
+ - name: プラグインをビルド
26
+ run: mvn -B package --file pom.xml
27
+ - name: original-*.jarを削除
28
+ run: rm target/original-*.jar
29
+ - name: リリース
30
+ uses: softprops/action-gh-release@v1
31
32
+ tag_name: build-${{ github.run_number }}
33
+ files: 'target/*.jar'
0 commit comments