Skip to content

rename ci workflow

rename ci workflow #2

Workflow file for this run

name: Publish Docker images
on:
push:
tags:
- v*
env:
REGISTRY: ghcr.io
jobs:
publish:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- dockerfile: ./Dockerfile.ic-assignment
image: ${{ github.repository }}-ic-assignment
- dockerfile: ./Dockerfile.regex-labeler
image: ${{ github.repository }}-regex-labeler
steps:
- uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/[email protected]
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/[email protected]
with:
images: ${{ matrix.image }}
- name: Build and push Docker image
uses: docker/[email protected]
with:
context: .
push: true
file: ${{ matrix.dockerfile }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}