File tree 3 files changed +8
-3
lines changed
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -24,11 +24,15 @@ jobs:
24
24
gpg-passphrase : MAVEN_GPG_PASSPHRASE
25
25
server-username : MAVEN_USERNAME
26
26
server-password : MAVEN_CENTRAL_TOKEN
27
+ - name : Setup git profile
28
+ run : |
29
+ git config --global user.name github-actions
30
+ git config --global user.email [email protected]
27
31
- name : Publish to Maven Central
28
32
run : mvn deploy
29
33
env :
30
34
MAVEN_USERNAME : hap-java-dev
31
35
MAVEN_CENTRAL_TOKEN : ${{ secrets.MAVEN_CENTRAL_TOKEN }}
32
36
MAVEN_GPG_PASSPHRASE : ${{ secrets.GPG_PASSPHRASE }}
33
37
- name : Publish site
34
- run : mvn deploy- site
38
+ run : mvn -B site-deploy -Dusername=github-actions -Dpassword=${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ Include HAP-Java in your project using maven:
22
22
</dependency>
23
23
```
24
24
25
- After that, check out the [ Sample] ( https://github.com/hap-java/HAP-Java/tree/sample ) .
25
+ After that, check out the [ Sample] ( https://github.com/hap-java/HAP-Java/tree/sample ) and
26
+ read the [ Javadoc] ( https://hap-java.github.io/HAP-Java/apidocs/index.html )
26
27
27
28
Supported HomeKit Accessories
28
29
=========
Original file line number Diff line number Diff line change 211
211
<plugin >
212
212
<groupId >org.apache.maven.plugins</groupId >
213
213
<artifactId >maven-scm-publish-plugin</artifactId >
214
- <version >3.0 .0</version >
214
+ <version >3.1 .0</version >
215
215
<executions >
216
216
<execution >
217
217
<id >scm-publish</id >
You can’t perform that action at this time.
0 commit comments