All checks were successful
Docker Build and Publish / build (push) Successful in 6s
20 lines
352 B
YAML
20 lines
352 B
YAML
name: Docker Build and Publish
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [ "main" ]
|
|
|
|
env:
|
|
DOCKERHUB_REPO: ghcr.io/ryuupendragon/caddy-test
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Test
|
|
run: docker run --rm --privileged tonistiigi/binfmt --install all
|