forked from equinor/isar-robot
-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (48 loc) · 1.4 KB
/
publish_component.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
name: Build and publish component
on:
workflow_call:
inputs:
Registry:
required: true
type: string
Tag:
required: true
type: string
ImageName:
required: true
type: string
secrets:
RegistryUsername:
required: true
RegistryPassword:
required: true
jobs:
build-and-push-container:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to the Github Container registry
uses: docker/login-action@v2
with:
registry: ${{ inputs.Registry }}
username: ${{ secrets.RegistryUsername }}
password: ${{ secrets.RegistryPassword }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ inputs.Registry }}/${{ inputs.ImageName }}
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: .
file: Dockerfile
push: true
tags: |
${{ inputs.Registry }}/${{ inputs.ImageName }}:${{ inputs.Tag }}
${{ inputs.Registry }}/${{ inputs.ImageName }}:latest
labels: ${{ steps.meta.outputs.labels }}