This commit is contained in:
2025-07-07 21:05:23 +05:30
parent 2ca31451a6
commit 4e0bfcc999

47
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,47 @@
name: Docker Build and Publish for caddy-crowdsec
on:
workflow_dispatch:
push:
branches: [ "main" ]
paths:
- caddy-cloudflare/Dockerfile
jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Parse Caddy version
id: version
run: echo "VERSION=$(grep -Eo 'caddy:[0-9]+\.[0-9]+\.[0-9]+$' caddy-cloudflare/Dockerfile | cut -d ':' -f2)" >> $GITHUB_ENV
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Build and Push Docker images for all Container Registries
uses: docker/build-push-action@v6
with:
tags: ryuupendragon/caddy-cloudflare:${{ env.VERSION }}, ryuupendragon/caddy-cloudflare:latest, ghcr.io/ryuupendragon/caddy-cloudflare:${{ env.VERSION }}, ghcr.io/ryuupendragon/caddy-cloudflare:latest
file: caddy-cloudflare/Dockerfile
platforms: linux/amd64,linux/arm64
push: true