forked from springwolf/springwolf-core
-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (46 loc) · 1.67 KB
/
springwolf-ui.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
name: springwolf-ui
on:
push:
branches:
- master
pull_request:
types: [ opened, synchronize, ready_for_review ]
env:
project: springwolf-ui
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Check formatting (before running tests)
run: ./gradlew -p ${{ env.project }} spotlessCheck
- name: Test
run: ./gradlew -p ${{ env.project }} npm_run_test
- name: Build
run: ./gradlew -p ${{ env.project }} build
- name: Publish package
if: github.ref == 'refs/heads/master'
run: ./gradlew -p ${{ env.project }} publish
env:
ORG_GRADLE_PROJECT_SNAPSHOT: true
ORG_GRADLE_PROJECT_SIGNINGKEY: ${{secrets.ORG_GRADLE_PROJECT_SIGNINGKEY}}
ORG_GRADLE_PROJECT_SIGNINGPASSWORD: ${{secrets.ORG_GRADLE_PROJECT_SIGNINGPASSWORD}}
ORG_GRADLE_PROJECT_MAVEN_URL: https://s01.oss.sonatype.org/content/repositories/snapshots/
ORG_GRADLE_PROJECT_MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
ORG_GRADLE_PROJECT_MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
- name: Build gh-pages
if: github.ref == 'refs/heads/master'
run: ./gradlew -p ${{ env.project }} buildPages
- name: Deploy to gh pages 🚀
if: github.ref == 'refs/heads/master'
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: ${{ env.project }}/dist/springwolf-ui/