-
Notifications
You must be signed in to change notification settings - Fork 2
33 lines (30 loc) · 878 Bytes
/
ci.java.yml
File metadata and controls
33 lines (30 loc) · 878 Bytes
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
---
name: CI-Java
on:
push:
branches:
- main
tags-ignore:
- "*"
paths-ignore:
- 'docs/**'
- 'typescript/**'
- 'README.md'
pull_request:
branches:
- main
workflow_dispatch: {}
concurrency:
group: build-java-${{ github.ref }}
cancel-in-progress: true
jobs:
java-build:
uses: jqassistant-tooling/jqassistant-github-actions/.github/workflows/ci.yml@main
with:
publish_snapshots: true
secrets:
ossrh_username: ${{ secrets.OSSRH_USERNAME }}
ossrh_password: ${{ secrets.OSSRH_PASSWORD }}
ossrh_signing_key: ${{ secrets.OSSRH_SIGNING_KEY }}
ossrh_signing_password: ${{ secrets.OSSRH_SIGNING_PASSWORD }}
sonar_token: ${{ secrets.SONAR_TOKEN }}