File tree 2 files changed +9
-28
lines changed 2 files changed +9
-28
lines changed Original file line number Diff line number Diff line change 1
- # This is a basic workflow to help you get started with Actions
2
-
3
1
name : CI
4
2
5
- # Controls when the workflow will run
6
3
on :
7
- # Triggers the workflow on push or pull request events but only for the master branch
8
4
push :
9
5
branches : [ master ]
10
6
pull_request :
11
7
branches : [ master ]
12
8
13
- # Allows you to run this workflow manually from the Actions tab
14
- workflow_dispatch :
15
-
16
- # A workflow run is made up of one or more jobs that can run sequentially or in parallel
17
9
jobs :
18
- # This workflow contains a single job called "build"
19
10
build :
20
- # The type of runner that the job will run on
21
11
runs-on : ubuntu-latest
22
12
23
- # Steps represent a sequence of tasks that will be executed as part of the job
24
13
steps :
25
- # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
26
14
- uses : actions/checkout@v2
27
15
28
16
- uses : actions/setup-java@v2
31
19
distribution : ' adopt'
32
20
33
21
- name : Run the Maven verify phase
34
- run : mvn --batch-mode --update-snapshots verify
22
+ run : mvn --batch-mode verify
Original file line number Diff line number Diff line change @@ -14,22 +14,15 @@ Further reading:
14
14
* [ About API implemented in this library] ( http://doc.kaitai.io/stream_api.html )
15
15
* [ Java-specific notes] ( http://doc.kaitai.io/lang_java.html )
16
16
17
- # Build
18
- To build library run the following command:
17
+ ## Build
18
+ To build the library, run the following command:
19
19
20
- ``` console
20
+ ``` sh
21
21
mvn install
22
22
```
23
23
24
- # Release
25
- To make a release ensure that you have:
26
-
27
- - a [ gpg] ( https://gnupg.org/ ) installed
28
- - a [ configured] ( https://maven.apache.org/plugins/maven-gpg-plugin/usage.html ) gpg signing key
29
- - pass ` -DperformRelease=true ` argument to the maven command invocation:
30
-
31
- ``` console
32
- mvn -DperformRelease=true deploy
33
- ```
34
-
35
- See also http://doc.kaitai.io/developers.html#java .
24
+ ## Release
25
+ <sub >
26
+ If you are maintainer of this project please visit http://doc.kaitai.io/developers.html#java
27
+ to get instructions how to make a release.
28
+ </sub >
You can’t perform that action at this time.
0 commit comments