-
Notifications
You must be signed in to change notification settings - Fork 30
50 lines (48 loc) · 1.6 KB
/
build-image.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
name: Build Image
on:
push:
branches:
- main
workflow_call:
inputs:
tag:
description: 'Additional tag for built image'
required: false
type: string
default: ""
pull_request_target:
types: [ opened, edited, synchronize, reopened, ready_for_review ]
permissions:
id-token: write # This is required for requesting the JWT token
contents: read # This is required for actions/checkout
jobs:
get-custom-tags:
runs-on: ubuntu-latest
outputs:
tags: ${{ steps.get_custom_tags.outputs.tags }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get tags
id: get_custom_tags
run: |
tags=""
if [[ "${{ github.event_name }}" == "push" ]]; then
tags="latest"
elif [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then
tags="${{ inputs.tag }}"
elif [[ "${{ github.event_name }}" == "pull_request_target" ]]; then
tags="${{ github.event.pull_request.head.sha }}"
fi
echo "Using custom tags: '$tags'"
echo "tags=$tags" >> $GITHUB_OUTPUT
build-image:
needs: get-custom-tags
uses: kyma-project/test-infra/.github/workflows/image-builder.yml@main
with:
name: lifecycle-manager
dockerfile: Dockerfile
context: .
# tags are additional tags that will be added to the image on top of the default ones
# default tags are documented here: https://github.com/kyma-project/test-infra/tree/main/cmd/image-builder#default-tags
tags: ${{ needs.get-custom-tags.outputs.tags }}