-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (54 loc) · 1.88 KB
/
build_and_deploy_misc.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
55
---
# This workflow is to build images that themselves are based on the base images.
# Accordingly, it should be run after the build of the base images.
name: Build and Deploy complex images
on:
schedule:
- cron: '22 1 * * 1' # 22 past 01:00 on Monday
workflow_dispatch:
push:
branches:
- main
paths:
- 'ubuntu/**'
- 'pack.sh'
- 'base/ubuntu/**'
jobs:
build_and_deploy:
runs-on: ubuntu-latest
env:
ANSIBLE_VERSION: 2.15.5
strategy:
fail-fast: false
matrix:
update_base_components:
- true
- false
images:
- ubuntu/jammy-nginx
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install specific ansible-core version
run: pip install ansible-core==${{ env.ANSIBLE_VERSION }}
- name: Debug ansible version
run: ansible-playbook --version
- name: Install ansible dependencies
run: ansible-galaxy collection install -r requirements.yml
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build image
id: build-image
run: BUILD_BASE_IMG=false IMG=${{ matrix.images }} UPDATE_BASE_COMPONENTS=${{ matrix.update_base_components }} ./pack.sh docker
- name: Get image name and tag # grep in the image directory's variables file to find the image name/tag to push to
id: get-image-name
run: |
echo "container_repo=`grep container_repo ${{ matrix.images }}/variables.auto.pkrvars.hcl | awk '{print $3}'`" >> "$GITHUB_OUTPUT"
- name: Push image
run: docker push ${{ steps.get-image-name.outputs.container_repo }}${{ matrix.update_base_components && '-pilot' || '' }}