Build #196
This file contains hidden or 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: | |
| - master | |
| schedule: | |
| - cron: "0 4 * * 0" | |
| jobs: | |
| build-odoo: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| include: | |
| - ODOOVERSION: "14.0" | |
| - ODOOVERSION: "14.0-light" | |
| - ODOOVERSION: "15.0" | |
| - ODOOVERSION: "16.0" | |
| - ODOOVERSION: "16.0-light" | |
| - ODOOVERSION: "17.0" | |
| - ODOOVERSION: "17.0-light" | |
| - ODOOVERSION: "18.0" | |
| - ODOOVERSION: "18.0-light" | |
| - ODOOVERSION: "19.0-light" | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Login to ghcr.io | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build image | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: . | |
| pull: true | |
| no-cache: true # some dependency are not pin so we need to allway update we should improve this | |
| 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 |