Skip to content

use v* pattern

use v* pattern #1

Workflow file for this run

name: Publish ic-assignment image
on:
push:
branches: ["main"]
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.ic-regex-labeler
image: ${{ github.repository }}-regex-labeler
steps:
- uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@v3.1.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5.5.1
with:
images: ${{ matrix.image }}
- name: Build and push Docker image
uses: docker/build-push-action@v5.3.0
with:
context: .
push: true
file: ${{ matrix.dockerfile }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}