automated update: 2026-06-10 22:31:20

This commit is contained in:
root
2026-06-10 22:31:20 -04:00
parent b9b734507b
commit cdf10452fb
6 changed files with 110 additions and 22 deletions
+19 -3
View File
@@ -2,7 +2,13 @@ name: Publish Docker Image
on:
push:
branches: [ "main" ]
branches: ["main"]
paths-ignore:
- "**.md"
- "docs/**"
- ".github/workflows/release.yml"
- ".github/workflows/lint.yml"
- ".github/dependabot.yml"
jobs:
build:
@@ -23,17 +29,27 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GHCR_PAT }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/sudolulo/if-curator-headless:latest
cache-from: type=gha
cache-to: type=gha,mode=max