forked from kyetter/ansible-devspace-demo
-
Notifications
You must be signed in to change notification settings - Fork 28
81 lines (70 loc) · 2.91 KB
/
image-build.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
name: Build and Push Ansible Creator EE Image
on:
push:
branches:
- 'devspaces-[0-9].[0-9]+-rhel-8'
- devspaces-3-rhel-8
workflow_call:
secrets:
QUAY_USERNAME:
required: true
QUAY_PASSWORD:
required: true
jobs:
build_ansible_creator_ee_image:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
token: ${{secrets.VSVYDENK_GITHUB_TOKEN}}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: "Docker quay.io Login"
uses: docker/login-action@v2
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: Check Commit Message
id: check_message
run: |
commit_message=$(git log --format=%B -n 1 ${{ github.sha }})
prefix="chore(devfile):auto-update Ansible Creator EE image"
if [[ $commit_message == "$prefix"* ]]; then
echo "update_devfile=false" >> $GITHUB_OUTPUT
else
echo "update_devfile=true" >> $GITHUB_OUTPUT
fi
- name: Build and push Docker image; Update image in devfile
if: steps.check_message.outputs.update_devfile == 'true' || github.actor == 'devstudio-release'
run: |
echo "Branch name: ${{ github.ref }}"
branch_name=${{ github.ref }}
branch_name=${branch_name#refs/heads/}
if [[ $branch_name == "devspaces-3-rhel-8" ]]; then
tag="latest"
else
tag=$(echo "$branch_name" | grep -o '[0-9]\+\.[0-9]\+')
fi
echo "Tag: $tag"
image_id=$(docker build -q -t "quay.io/devspaces/ansible-creator-ee:${tag}" .)
short_sha=$(echo $image_id | cut -c8-12)
echo "Short SHA: $short_sha"
docker tag quay.io/devspaces/ansible-creator-ee:${tag} quay.io/devspaces/ansible-creator-ee:${tag}-${short_sha}
docker image push --all-tags quay.io/devspaces/ansible-creator-ee
# rewrite devfile to update digest for ansible-creator-ee
docker pull quay.io/devspaces/ansible-creator-ee:${tag}
digest=$(docker inspect --format='{{index .RepoDigests 0}}' quay.io/devspaces/ansible-creator-ee:${tag})
sed -r -i devfile.yaml -e "s|(image: .+devspaces/ansible-creator-ee.+)|image: ${digest}|g"
- name: Set up Git
if: steps.check_message.outputs.update_devfile == 'true' || github.actor == 'devstudio-release'
run: |
git config --global user.email "[email protected]"
git config --global user.name "Valerii Svydenko"
- name: Commit and Push Changes
if: steps.check_message.outputs.update_devfile == 'true' || github.actor == 'devstudio-release'
run: |
git add .
git commit -m "chore(devfile):auto-update Ansible Creator EE image"
git push