images for Odoo 12, 13, 14 and 16 #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- main | |
# schedule: | |
# - cron: "0 4 * * 0" | |
jobs: | |
build-odoo: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- ODOOVERSION: "12.0" | |
- ODOOVERSION: "13.0" | |
- ODOOVERSION: "14.0" | |
- ODOOVERSION: "15.0" | |
- ODOOVERSION: "16.0" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to ghcr.io | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build image | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
file: ${{ matrix.ODOOVERSION }}/Dockerfile | |
tags: | | |
ghcr.io/${{ github.repository }}:${{ matrix.ODOOVERSION }}-latest | |
cache-from: type=registry,ref=ghcr.io/${{ github.repository }}:${{ matrix.ODOOVERSION }}-latest | |
cache-to: type=inline | |
push: true |