File tree 1 file changed +12
-14
lines changed
1 file changed +12
-14
lines changed Original file line number Diff line number Diff line change @@ -3,27 +3,25 @@ name: GitHub Actions ACD Java SDK
3
3
on : [push, pull_request]
4
4
5
5
jobs :
6
- verify :
6
+ build_test :
7
7
runs-on : ubuntu-latest
8
+ strategy :
9
+ fail-fast : false
10
+ matrix :
11
+ java-version :
12
+ - 8
13
+ - 11
8
14
steps :
9
15
- uses : actions/checkout@v3
10
16
11
17
- uses : actions/setup-java@v3
12
18
with :
13
- java-version : ' 8 '
19
+ java-version : ${{ matrix.java-version }}
14
20
distribution : ' adopt'
21
+
15
22
- name : Install Dependencies
16
23
run : mvn install
17
24
18
- test :
19
- runs-on : ubuntu-latest
20
- steps :
21
- - uses : actions/checkout@v3
22
-
23
- - uses : actions/setup-java@v3
24
- with :
25
- java-version : ' 8'
26
- distribution : ' adopt'
27
25
- name : Building Project
28
26
run : mvn clean compile
29
27
42
40
43
41
release :
44
42
runs-on : ubuntu-latest
45
- needs : [verify, test]
43
+ needs : build_test
46
44
if : " github.event_name == 'push' && github.ref == 'refs/heads/master' && !startsWith(github.event.head_commit.message, 'chore')"
47
45
steps :
48
46
- name : Setup Extensions
53
51
- name : Setup Node
54
52
uses : actions/setup-node@v1
55
53
with :
56
- node-version : ' 14 '
54
+ node-version : ' 18 '
57
55
58
56
- name : Install Semantic Release dependencies
59
57
run : |
69
67
env :
70
68
GH_TOKEN : ${{ secrets.GH_TOKEN }}
71
69
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
72
- run : echo ::set-output name= NEXT_RELEASE:: $(npx semantic-release --dry-run | grep -oP "Published release \K[0-9]+\.[0-9]+\.[0-9]+") # null if no published release
70
+ run : echo " NEXT_RELEASE= $(npx semantic-release --dry-run | grep -oP "Published release \K[0-9]+\.[0-9]+\.[0-9]+")" >> $GITHUB_OUTPUT
73
71
74
72
- name : Publish to git releases and tags
75
73
if : ${{ steps.next_release.outputs.NEXT_RELEASE != null }}
You can’t perform that action at this time.
0 commit comments