Skip to content

Build and Publish Docker Image #5

Build and Publish Docker Image

Build and Publish Docker Image #5

name: Build and Publish Docker Image
on:
workflow_dispatch:
inputs:
tag:
description: 'Docker Image Tag'
required: true
default: 'latest'
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io/vakarisbk/incubator-livy
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: .
file: ./docker/Dockerfile
push: true
tags: ghcr.io/${{ github.repository_owner }}/livy:${{ github.event.inputs.tag }}