FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
tesler/.github/workflows/build.yml at master · tesler-platform/tesler · GitHub
This repository was archived by the owner on Jan 16, 2024. It is now read-only.
tesler-platform
/
tesler
Public archive
Notifications
You must be signed in to change notification settings
Fork
13
Star
15
Code
Issues
11
Pull requests
3
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
tesler
/
.github
/
workflows
/
build.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
36 lines (34 loc) · 1.1 KB
Breadcrumbs
tesler
/
.github
/
workflows
/
build.yml
Copy path
File metadata and controls
36 lines (34 loc) · 1.1 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
name
:
Build project
on
:
[push, workflow_dispatch]
jobs
:
build11
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Set up JDK 11
uses
:
actions/setup-java@v2
with
:
java-version
:
'
11
'
distribution
:
'
adopt
'
-
name
:
Build with Maven
run
:
mvn clean install -Pcoverage sonar:sonar -Dsonar.organization=tesler-platform -Dsonar.projectKey=tesler-platform_tesler -Dsonar.host.url=https://sonarcloud.io -Dsonar.login=$SONAR_TOKEN
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN
:
${{ secrets.SONAR_TOKEN }}
-
name
:
Deploy JavaDoc
if
:
${{ github.ref == 'refs/heads/master' }}
uses
:
JamesIves/github-pages-deploy-action@4.1.3
with
:
branch
:
javadoc
folder
:
target/site/apidocs
build8
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Set up JDK 8
uses
:
actions/setup-java@v2
with
:
java-version
:
'
8
'
distribution
:
'
adopt
'
-
name
:
Build with Maven
run
:
mvn clean install
Back
|
FazBrowse Home
|
New Git URL