Update from debian 12.5 to debian 12.6 #174
Workflow file for this run
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 Docker images | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
jobs: | |
build: | |
strategy: | |
matrix: | |
path: | |
- workloads/dataset-controller | |
- workloads/jupyterlab | |
- workloads/retro-next/build_knowledge_base | |
- workloads/vectorindex-controller | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Add Buildx to Docker | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GHCR | |
uses: docker/#-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build Docker image & Upload to GHCR | |
uses: docker/build-push-action@v5 | |
with: | |
context: ${{ format('{0}:{1}', '{{defaultContext}}', matrix.path) }} | |
push: ${{ github.event_name == 'push' }} | |
tags: ${{ format('ghcr.io/{0}/{1}:latest', github.repository, matrix.path) }} |