Remove vo.builtrix.tech from IISAS-FedCloud site #826
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 and push containers | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
builder: | |
name: Build and push images | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
image: | |
- cloud-info | |
- caso | |
- cloudkeeper-os | |
- cloudkeeper-core | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Docker meta | |
id: docker_meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: ghcr.io/egi-federation/fedcloud-${{ matrix.image }} | |
tags: | | |
type=sha | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
if: github.event_name != 'pull_request' | |
- name: Build | |
uses: docker/build-push-action@v4 | |
with: | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: ${{ steps.docker_meta.outputs.tags }} | |
labels: ${{ steps.docker_meta.outputs.labels }} | |
context: ${{ matrix.image }} | |
file: ${{ matrix.image }}/Dockerfile |