Skip to content

Add workflow file

Add workflow file #1

name: Publish
on:
workflow_dispatch: {}
push:
branches: [ main ]
jobs:
push_to_registry:
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
name: Push production image
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
with:
submodules: true
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker
uses: docker/login-action@v2
with:
username: duncte123
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: oengusio/caddy:latest
cache-from: type=gha
cache-to: type=gha
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}