removing buildx stage
Some checks failed
Build and Publish Docker Image / build (push) Failing after 19s

This commit is contained in:
Timothy Rogers 2025-05-24 11:39:35 -04:00
parent e16b2c40d4
commit f1065bd187

View file

@ -26,9 +26,6 @@ jobs:
type=semver,pattern={{major}}.{{minor}}
type=sha
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Container Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
@ -37,10 +34,12 @@ jobs:
username: ${{ vars.FORGEJO_USER }}
password: ${{ secrets.FORGEJO_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
- name: Build and Push
uses: docker/build-push-action@v4
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max