-
Notifications
You must be signed in to change notification settings - Fork 35
47 lines (47 loc) · 1.43 KB
/
tl500-stack-image-publish.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
name: tl500-stack-image-publish
on:
push:
branches:
- main
tags:
- '*'
paths:
- codereadyworkspaces/stack/VERSION
- .github/workflows/tl500-stack-image-publish.yaml
jobs:
build:
env:
context: codereadyworkspaces/stack
image_name: stack-tl500
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: Get image tags
id: image_tags
run: |
echo -n ::set-output name=IMAGE_TAGS::
# exposes variable VERSION
source ${context}/VERSION
TAGS=('latest')
if [ "${VERSION}" ] && [ "${VERSION}" != "latest" ]; then
TAGS+=("${VERSION}")
fi
echo "${TAGS[*]}"
- name: Build image
id: build_image
uses: redhat-actions/[email protected]
with:
context: ${{ env.context }}
dockerfiles: |
./${{ env.context }}/Dockerfile
image: ${{ env.image_name }}
tags: "${{ steps.image_tags.outputs.IMAGE_TAGS }}"
- name: Push to Quay
id: push_to_quay
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build_image.outputs.image }}
registry: ${{ secrets.REGISTRY_URI }}/${{ secrets.REGISTRY_REPOSITORY }}
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
tags: ${{ steps.build_image.outputs.tags }}