-
Notifications
You must be signed in to change notification settings - Fork 4
52 lines (51 loc) · 1.32 KB
/
publish.yaml
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
name: Publish
on:
release:
types: [created]
jobs:
publish-docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
ref: ${{ github.ref }}
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 11
- name: Check
uses: eskatos/gradle-command-action@v1
with:
arguments: check
- name: Upload to Docker
uses: eskatos/gradle-command-action@v1
with:
arguments: jib -Platest=true
env:
DOCKER_KEY: ${{ secrets.DOCKER_KEY }}
publish-github:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
ref: ${{ github.ref }}
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 11
- name: Check
uses: eskatos/gradle-command-action@v1
with:
arguments: check
- name: Build zip
uses: eskatos/gradle-command-action@v1
with:
arguments: distZip
- name: Upload Release Asset
id: upload-release-asset
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }}
file: ./build/distributions/*.zip
file_glob: true