From 919fe29ffbb5b28132913a966468b06bfa56dea1 Mon Sep 17 00:00:00 2001 From: Jon Staab Date: Tue, 17 Feb 2026 10:44:53 -0800 Subject: [PATCH] Update docker image creation for gitea ci --- {.github => .gitea}/workflows/docker-publish.yml | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) rename {.github => .gitea}/workflows/docker-publish.yml (72%) diff --git a/.github/workflows/docker-publish.yml b/.gitea/workflows/docker-publish.yml similarity index 72% rename from .github/workflows/docker-publish.yml rename to .gitea/workflows/docker-publish.yml index c765d0e1..faf11f15 100644 --- a/.github/workflows/docker-publish.yml +++ b/.gitea/workflows/docker-publish.yml @@ -2,7 +2,7 @@ name: Docker on: push: - branches: ['master'] + branches: [master] env: REGISTRY: ghcr.io @@ -14,8 +14,6 @@ jobs: permissions: contents: read packages: write - attestations: write - id-token: write steps: - name: Checkout repository @@ -25,8 +23,8 @@ jobs: uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} + username: ${{ secrets.REGISTRY_USERNAME }} + password: ${{ secrets.REGISTRY_PASSWORD }} - name: Extract metadata (tags, labels) for Docker id: meta @@ -50,10 +48,3 @@ jobs: platforms: linux/amd64,linux/arm64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} - - - name: Generate artifact attestation - uses: actions/attest-build-provenance@v2 - with: - subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME}} - subject-digest: ${{ steps.push.outputs.digest }} - push-to-registry: true