Skip to content

Publish Docker image #43

Publish Docker image

Publish Docker image #43

Workflow file for this run

name: Publish Docker image
on:
push:
branches:
- 'main'
schedule:
- cron: 0 0 * * 0 # Weekly
workflow_dispatch:
jobs:
push_to_registry:
name: Push docker image to registry
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to ghcr
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/${{ github.actor }}/novnc:latest