-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (39 loc) · 1.17 KB
/
daydream-api-build-1.20.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
name: Build Daydream API (1.20)
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'zulu'
cache: 'gradle'
- name: Setup git config
run: |
git config --global user.email "[email protected]"
git config --global user.name "Github Action"
- name : Build with Gradle
run: |
./gradlew applyGeneratedApiPatches applyApiPatches --no-daemon
./gradlew build --no-daemon
- name: Generate Javadoc
run: |
cd Daydream-API
../gradlew javadoc --no-daemon
- name: Deploy Javadoc
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: Daydream-API/build/docs/javadoc
- name: Publish package
uses: gradle/gradle-build-action@v2
with:
arguments: publishAllPublicationsToMavenRepository
env:
DEPLOY_ID: ${{ secrets.DEPLOY_ID }}
DEPLOY_PW: ${{ secrets.DEPLOY_PW }}