Skip to content

Add Docker image and auto publishing #1

Add Docker image and auto publishing

Add Docker image and auto publishing #1

Workflow file for this run

name: Publish Docker image
on: push
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: latest
labels: "ghcr.io/${{ github.repository }}"