-
Notifications
You must be signed in to change notification settings - Fork 95
66 lines (62 loc) · 2.13 KB
/
maven.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: Build and test
on:
push:
branches:
- master
tags:
- "v*"
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
services:
salt-master:
image: mbologna/saltstack-master
options: --name saltmaster
ports:
- 8000:9080
salt-minion1:
image: mbologna/saltstack-minion
options: --name saltminion1 --link saltmaster:salt
salt-minion2:
image: mbologna/saltstack-minion
options: --name saltminion2 --link saltmaster:salt
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '11'
- name: Build and test with Maven
run: mvn checkstyle:check javadoc:javadoc test package
- name: Get branch name or tag
if: success()
uses: tj-actions/branch-names@v8
id: branch-name
- name: Publish javadoc for the default branch
if: success() && steps.branch-name.outputs.is_default == 'true'
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/apidocs
destination_dir: docs/${{ steps.branch-name.outputs.current_branch }}
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'
- name: Publish javadoc for a tagged release
if: success() && steps.branch-name.outputs.is_tag == 'true'
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/apidocs
destination_dir: docs/${{ steps.branch-name.outputs.tag }}
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'
- name: Create tagged release
if: success() && steps.branch-name.outputs.is_tag == 'true'
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
prerelease: false
files: |
target/salt-netapi-client*.jar