chore(deps): update docker/metadata-action action to v5 #157
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker Build | |
on: push | |
env: | |
image: clevyr/caddy | |
jobs: | |
build: | |
name: Build Image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build Test Image | |
id: docker_build_test | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
pull: true | |
load: true | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Test Config | |
run: | | |
docker run --rm -i ${{ steps.docker_build_test.outputs.imageid }} \ | |
caddy validate --config /etc/caddy/Caddyfile | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: | | |
clevyr/caddy | |
ghcr.io/clevyr/caddy | |
tags: | | |
type=raw,priority=1000,value=latest,enable=${{ github.ref == 'refs/heads/main' }} | |
type=ref,event=branch | |
type=sha | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and Push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
pull: true | |
push: ${{ github.ref_name == 'main' }} | |
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8 | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
readme: | |
name: Update DockerHub Description | |
if: ${{ github.short_ref == 'main' }} | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: peter-evans/dockerhub-description@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
repository: ${{ env.image }} |