blob: 46366c9f32e76ab4b066ebfc91e93de68799a1b3 (
plain)
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
|
name: CI Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 13
uses: actions/setup-java@v1.3.0
with:
java-version: 13
- name: Gradle build cache
uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-build-${{ hashFiles('**/*.gradle*') }}
restore-keys: ${{ runner.os }}-gradle-build-
- name: Gradle wrapper cache
uses: actions/cache@v1
with:
path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle-wrapper.properties') }}
- name: Build with Gradle
run: ./gradlew build
- name: Docker push to GitHub Packages
uses: docker/build-push-action@v1
with:
path: ./sw-server
username: ${{ github.actor }}
password: ${{ github.token }}
registry: docker.pkg.github.com
repository: joffrey-bion/seven-wonders/sw-server
tag_with_ref: true
tag_with_sha: true
- name: Docker push to Heroku
uses: docker/build-push-action@v1
with:
path: ./sw-server
username: _
password: ${{ secrets.HEROKU_API_KEY }}
registry: registry.heroku.com
repository: seven-wonders-online/web
tag_with_ref: true
tag_with_sha: true
|