-
Notifications
You must be signed in to change notification settings - Fork 31
52 lines (46 loc) · 1.53 KB
/
harbour-build-server.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
name: Build and export CAP server image
on:
push:
branches: ['master', 'dev', 'qa', 'test']
paths-ignore:
- "ui/**"
jobs:
build-image:
needs: python-tests
name: Build and export server image
runs-on: ubuntu-20.04
outputs:
image-id: ${{ steps.build.outputs.image-id }}
steps:
- uses: actions/checkout@v3
- name: Extract branch name
shell: bash
run: echo "BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_OUTPUT
id: get_branch
- id: build
name: Build and export
uses: cern-sis/gh-workflows/.github/actions/[email protected]
with:
dockerfile: ./docker/harbour/backend/Dockerfile
platforms: linux/amd64,linux/arm64
image: cern-sis/cap-server
registry: registry.cern.ch
cache: false
tags: ${{ steps.get_branch.outputs.BRANCH_NAME }}
username: ${{ secrets.HARBOR_USERNAME }}
password: ${{ secrets.HARBOR_PASSWORD }}
build-args: |
BRANCH_NAME=${{ steps.get_branch.outputs.BRANCH_NAME }}
deploy:
needs: build-image
name: update-image
runs-on: ubuntu-20.04
steps:
- name: send event
uses: cern-sis/gh-workflows/.github/actions/[email protected]
with:
event-type: update
token: ${{ secrets.PAT_FIRE_EVENTS_ON_CERN_SIS_KUBERNETES_CAP }}
repo: cern-sis/kubernetes-cap
images: |
cern-sis/cap-server@{{ needs.build-image.outputs.image-id }}