-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (57 loc) · 1.83 KB
/
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
# SPDX-FileCopyrightText: 2021 Coop IT Easy SCRLfs
# Copyright (c) 2021 Stéphane Bidoul
# Copyright (c) 2021 ACSONE SA/NV
#
# SPDX-License-Identifier: MIT AND AGPL-3.0-or-later
name: Create and publish Docker image
on:
push:
branches:
- "main"
tags:
- "v*"
schedule:
- cron: "0 4 * * 1"
jobs:
build-and-push-image:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- odoo_version: "11.0"
python_version: "3.6"
- odoo_version: "12.0"
python_version: "3.6"
- odoo_version: "12.0"
python_version: "3.7"
- odoo_version: "12.0"
python_version: "3.8"
steps:
- name: Checkout Code
uses: actions/checkout@v1
- name: Login to GitHub Container Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v3
with:
images: ghcr.io/${{ github.repository }}
tags: |
type=ref,event=branch,prefix=${{ matrix.odoo_version }}-py${{ matrix.python_version }}-
type=semver,pattern=${{ matrix.odoo_version }}.{{version}}-py${{ matrix.python_version }}
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: .
build-args: |
python_version=${{ matrix.python_version }}
odoo_version=${{ matrix.odoo_version }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}