Skip to content

Update pipeline (#455) #1054

Update pipeline (#455)

Update pipeline (#455) #1054

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
IMAGE_NAME: ${{ github.event.repository.name }}
jobs:
build:
name: Build Docker image
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Process metadata (tags, labels)
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ vars.DOCKER_ORGANIZATION }}/${{ env.IMAGE_NAME }}
${{ vars.REGISTRY_GITHUB }}/${{ github.repository }}
- name: Build image
uses: docker/build-push-action@v6
with:
context: .
push: false
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}