forked from microservices-demo/catalogue
-
Notifications
You must be signed in to change notification settings - Fork 0
68 lines (61 loc) · 2.18 KB
/
main.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
65
66
67
68
name: ci
on:
push:
branches:
- "*" # run for branches
tags:
- "*" # run for tags
pull_request:
branches:
- "*" # run for branches
tags:
- "*" # run for tags
jobs:
test:
defaults:
run:
working-directory: go/src/github.com/TUB-CNPE-TB/catalogue
runs-on: ubuntu-latest
env:
GROUP: europe-west3-docker.pkg.dev/cnpe-blue/sockshop
COMMIT: ${{ github.sha }}
REPO: catalogue
REPO_DB: catalogue-db
GO_VERSION: 1.7.5
GOPATH: /home/runner/work/catalogue/catalogue/go
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
path: go/src/github.com/TUB-CNPE-TB/catalogue
- name: Build catalogue image
uses: docker/build-push-action@v1
if: startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/master'
with:
push: false
dockerfile: go/src/github.com/TUB-CNPE-TB/catalogue/docker/catalogue/Dockerfile
path: go/src/github.com/TUB-CNPE-TB/catalogue
repository: ${{ env.GROUP }}/${{ env.REPO }}
tag_with_ref: true
tag_with_sha: true
- name: Build catalogue-db image
uses: docker/build-push-action@v1
if: startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/master'
with:
push: false
dockerfile: go/src/github.com/TUB-CNPE-TB/catalogue/docker/catalogue-db/Dockerfile
path: go/src/github.com/TUB-CNPE-TB/catalogue/docker/catalogue-db
repository: ${{ env.GROUP }}/${{ env.REPO_DB }}
tag_with_ref: true
tag_with_sha: true
# Push to GAR
- name: Login to GAR
uses: docker/login-action@v1
if: startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/master'
with:
registry: europe-west3-docker.pkg.dev
username: _json_key
password: ${{ secrets.GAR_JSON_KEY }}
- name: Push to GAR
if: startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/master'
run: docker push ${{ env.GROUP }}/${{ env.REPO }} --all-tags && docker push ${{ env.GROUP }}/${{ env.REPO_DB }} --all-tags