blob: 8b9ac4805bebd67ccbd23340f408fb1a2909b1f1 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
name: CI Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
DOCKERHUB_USER: hildan
DOCKER_IMAGE_NAME: seven-wonders-server
HEROKU_APP_NAME: seven-wonders-online
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 15
uses: actions/setup-java@v1.4.3
with:
java-version: 15
- name: Gradle build cache
uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-build-${{ hashFiles('**/*.gradle*') }}
restore-keys: ${{ runner.os }}-gradle-build-
- name: Gradle wrapper cache
uses: actions/cache@v2
with:
path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle-wrapper.properties') }}
- name: Build with Gradle
run: ./gradlew build
# technically optional, brings support for more platform to Docker Buildx
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
# required for Docker build/push
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ env.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.CONTAINER_REGISTRY_TOKEN }}
- name: Login to Heroku Container Registry
uses: docker/login-action@v1
with:
registry: registry.heroku.com
username: ${{ secrets.HEROKU_EMAIL }}
password: ${{ secrets.HEROKU_API_KEY }}
- name: Build and push to DockerHub and GitHub Container Registry
uses: docker/build-push-action@v2
with:
context: ./sw-server
file: ./sw-server/Dockerfile
push: true
tags: |
${{ env.DOCKERHUB_USER }}/${{ env.DOCKER_IMAGE_NAME }}:latest
ghcr.io/${{ github.repository_owner }}/${{ env.DOCKER_IMAGE_NAME }}:latest
registry.heroku.com/${{ env.HEROKU_APP_NAME }}/web
|