This repository was archived by the owner on Jul 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
68 lines (59 loc) · 1.74 KB
/
build.yml
File metadata and controls
68 lines (59 loc) · 1.74 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: build
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Gradle cache
uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Setup JDK
uses: actions/setup-java@v2
with:
distribution: temurin
java-version: 17
- name: Build
run: ./gradlew --no-daemon dist
- name: Upload artifact
uses: actions/upload-artifact@v2-preview
with:
name: wrapper
path: build/libs/*.jar
- name: Upload dist
uses: actions/upload-artifact@v2-preview
with:
name: dist
path: build/dist/*
upload:
if: "github.ref == 'refs/heads/stable' && startsWith(github.event.head_commit.message, '[create release] ')"
runs-on: ubuntu-latest
needs: build
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Download artifacts
uses: actions/download-artifact@v2
# https://stackoverflow.com/a/61919791
- name: Retrieve version
run: echo "::set-output name=version::$(cat version.txt)"
id: version
- name: Create a release
uses: marvinpinto/action-automatic-releases@latest
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: ${{ steps.version.outputs.version }}
prerelease: false
title: ${{ steps.version.outputs.version }}
files: |
wrapper/*
dist/*