Skip to content

WIP: add image build workflow for image builder template #1

WIP: add image build workflow for image builder template

WIP: add image build workflow for image builder template #1

Workflow file for this run

name: Publish Docker image
on:
pull_request:
branches: [main]
jobs:
push_to_registries:
name: Push Docker image to registry
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Build and push Docker images
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
with:
context: .
push: false
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}