Skip to content

Merge pull request #13 from RedTanny/fix_docker_image #38

Merge pull request #13 from RedTanny/fix_docker_image

Merge pull request #13 from RedTanny/fix_docker_image #38

Workflow file for this run

name: Build Image on Command
on:
push:
branches: [ "main" ]
workflow_dispatch: # Allows manual triggering from GitHub UI
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout automation code
uses: actions/checkout@v4
- name: Login to Quay.io
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.QUAY_ROBOT_USERNAME }}
password: ${{ secrets.QUAY_ROBOT_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: quay.io/ecosystem-appeng/auto-cm-testing:latest