forked from nuts-foundation/nuts-node
-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (52 loc) · 1.9 KB
/
build-images.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
53
54
55
56
57
58
59
60
61
---
name: 'Build Docker images'
on:
push:
branches:
- master
tags:
- 'v*'
pull_request:
branches:
- master
env:
image_registry: europe-west4-docker.pkg.dev/ivido-development
jobs:
build-push:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Set version params
id: version
shell: bash
run: |
echo "::set-output name=git_commit::$(echo ${GITHUB_SHA})"
echo "::set-output name=git_branch::$(echo ${GITHUB_REF#refs/heads/})"
echo "::set-output name=git_version::$(git name-rev --tags --name-only $(git rev-parse HEAD))"
- name: Print version params
run: |
echo "Commit: ${{ steps.version.outputs.git_commit }}"
echo "Branch: ${{ steps.version.outputs.git_branch }}"
echo "Version: ${{ steps.version.outputs.git_version }}"
- name: Login to image registry
uses: docker/login-action@v3
with:
registry: europe-west4-docker.pkg.dev
username: _json_key
password: ${{ secrets.GCP_KEY }}
- name: Build and push to registry
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: |
${{ env.image_registry }}/formelio/nuts-node:${{ steps.version.outputs.git_version }}
cache-from: type=registry,ref=${{ inputs.image_registry }}/formelio/nuts-node:latest-cache
cache-to: type=registry,ref=${{ inputs.image_registry }}/formelio/nuts-node:latest-cache,mode=max
build-args: |
GIT_VERSION=${{ steps.version.outputs.git_version }}
GIT_COMMIT=${{ steps.version.outputs.git_commit }}
GIT_BRANCH=${{ steps.version.outputs.git_branch }}