-
Notifications
You must be signed in to change notification settings - Fork 3
68 lines (57 loc) · 1.78 KB
/
build_containers.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
56
57
58
59
60
61
62
63
64
65
66
67
68
name: Creating container images
run-name: Creating container images 🧉
permissions:
pull-requests: write
contents: write
packages: write
on:
push:
pull_request:
types: [closed]
branches:
- main
workflow_dispatch:
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
strategy:
matrix:
image-name: [freva-dev, freva]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.X
uses: actions/setup-python@v4
with:
python-version: "3.X"
- name: Get tag
id: repository
run: |
echo "tag=$(python src/evaluation_system/__init__.py)" >> $GITHUB_OUTPUT
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push ${{ matrix.image-name }} image
uses: docker/build-push-action@v4
with:
platforms: linux/amd64
file: .docker/Dockerfile
push: ${{ github.event_name == 'pull_request' && github.event.pull_request.merged == true && github.ref == 'refs/heads/main' }}
build-args: |
VERSION=${{ steps.repository.outputs.tag }}
binder=${{ matrix.image-name == 'freva-dev' && 'false' || 'true' }}
tags: |
ghcr.io/freva-clint/${{matrix.image-name}}:${{ steps.repository.outputs.tag }}
ghcr.io/freva-clint/${{matrix.image-name}}:latest