-
Notifications
You must be signed in to change notification settings - Fork 61
53 lines (45 loc) · 1.32 KB
/
ci.yml
File metadata and controls
53 lines (45 loc) · 1.32 KB
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
name: CI
on:
# Only run push on main
push:
branches:
- main
paths-ignore:
- '**/*.md'
# Always run on PRs
pull_request:
branches: [ main ]
merge_group:
concurrency:
group: 'ci-${{ github.head_ref }}-${{ github.workflow }}'
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v1
- name: Install JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '19'
- name: Build and run tests
id: gradle
uses: gradle/gradle-build-action@v2
with:
arguments: check
gradle-home-cache-cleanup: true
cache-read-only: false
- name: (Fail-only) Upload build reports
if: failure()
uses: actions/upload-artifact@v3
with:
name: reports
path: |
**/build/reports/**
- name: Publish snapshot (main branch only)
if: github.repository == 'inflationx/viewpump' && github.ref == 'refs/heads/main'
run: ./gradlew publishRelease -PSONATYPE_USERNAME=${{ secrets.SONATYPE_USERNAME }} -PSONATYPE_USERNAME=${{ secrets.SONATYPE_PASSWORD }} --no-configuration-cache