Skip to content

Commit

Permalink
Add workflow to build and push docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
ll-nick committed Apr 18, 2024
1 parent a1f231c commit 1cd6330
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/build-and-push-docker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build and Push Docker Image

on:
push:
branches:
- main
- add_ci_docker_deployment

jobs:
build-and-push-image:
runs-on: ubuntu-latest

steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: 'linux/amd64,linux/arm64,linux/arm/v7'

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ghcr.io/KIT-MRT/arbitration_graphs:latest

0 comments on commit 1cd6330

Please sign in to comment.