-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (59 loc) · 1.98 KB
/
custom-containers-run-ci.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
name: Custom Images CI
on:
push:
branches:
- master
paths:
- 'custom-images/**'
jobs:
find-out-changes:
runs-on: ubuntu-latest
outputs:
changed_directories: ${{ steps.set-output.outputs.changed_directories }}
steps:
- uses: actions/checkout@v3
- name: Get changed files
id: changed-files
uses: tj-actions/[email protected]
with:
dir_names: true
json: true
quotepath: false
dir_names_exclude_current_dir: true
files: custom-images/**
- name: 'Set output in the matrix format'
id: set-output
run: echo "changed_directories={\"dir\":${{ steps.changed-files.outputs.all_changed_files }}}" >> "$GITHUB_OUTPUT"
build-and-publish:
runs-on: ubuntu-latest
if: ${{ needs.find-out-changes.outputs.changed_directories != '' }}
strategy:
matrix: ${{fromJson(needs.find-out-changes.outputs.changed_directories)}}
needs:
- find-out-changes
container:
image: aidanhilt/atils-ci:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock
steps:
- uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Check for .atils_buildconfig.json
id: check-buildconfig
run: |
if [ ! -f "${{ matrix.dir }}/.atils_buildconfig.json" ]; then
echo "No .atils_buildconfig.json found in ${{ matrix.dir }}. Exiting with failure."
exit 1
fi
- name: Build and publish custom image
if: steps.check-buildconfig.outcome == 'success'
run: |
atils build --build-directory "${{ matrix.dir }}" --action-set ci-build-publish