-
Notifications
You must be signed in to change notification settings - Fork 12
64 lines (58 loc) · 2.2 KB
/
build.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
61
62
63
64
# This workflow includes a basic build job and an optional snapshot publication to GitHub packages
name: build
# Controls when the action will run.
on: [push, pull_request, workflow_dispatch]
env:
GRADLE_MODULES_CACHE:
gradle_cache
GRADLE_MODULES_PATH: |
~/.gradle/caches
~/.gradle/wrapper
BUILD_CACHE_PATH:
./*
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
name: Main build
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Build Information
run: echo Event '${{ github.event_name }}' for branch '${{ github.ref }}'.
- name: Checkout
uses: actions/checkout@v2
with:
# pull all the commits, so the commit count will be correct
fetch-depth: 0
- name: Cache Gradle packages
uses: actions/cache@v2
with:
key: ${{env.GRADLE_MODULES_CACHE}}
path: ${{env.GRADLE_MODULES_PATH}}
- name: Cache Build Output
uses: actions/cache@v2
with:
key: ${{github.ref}}-${{github.run_id}}
path: ${{env.BUILD_CACHE_PATH}}
- name: Gradle build
run: ./gradlew build
snapshot:
name: Optional snapshot to Github Packages
needs: [build]
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/r0.') || startsWith(github.ref, 'refs/heads/r1.')) }}
runs-on: ubuntu-latest
steps:
- name: Cache Gradle packages
uses: actions/cache@v2
with:
key: ${{env.GRADLE_MODULES_CACHE}}
path: ${{env.GRADLE_MODULES_PATH}}
- name: Cache Build Output
uses: actions/cache@v2
with:
key: ${{github.ref}}-${{github.run_id}}
path: ${{env.BUILD_CACHE_PATH}}
- name: Publish Shapshot
run: ./gradlew publish -PpublishRepo=Custom -PpublishUrlForSnapshots=https://maven.pkg.github.com/${{github.repository}} -PpublishUsername=${{github.actor}} -PpublishPassword=${{secrets.GITHUB_TOKEN}} ${{env.GRADLE_OPTS}}