-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (27 loc) · 750 Bytes
/
ci.yml
File metadata and controls
30 lines (27 loc) · 750 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
---
name: CI
on:
push:
branches:
- main
tags-ignore:
- "*"
pull_request:
branches:
- main
workflow_dispatch: {}
concurrency:
group: build-java-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
uses: jqassistant-tooling/jqassistant-github-actions/.github/workflows/ci.yml@main
with:
java_test_versions: '[17, 21]' # use versions supported by latest JakartaEE version
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 }}