Skip to content

Add build-and-publish GHA #1

Add build-and-publish GHA

Add build-and-publish GHA #1

Workflow file for this run

name: Build and publish Docker container
on:
push:
branches:
- main
- ghcr
jobs:
build-and-publish:
name: Build and publish Docker container
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: docker build --tag ghcr.io/jsha/unboundtest:latest .
- name: Push
run: docker push ghcr.io/jsha/unboundtest:latest