Skip to content

Commit

Permalink
push containers manually because docker is incredibly broken (docker/…
Browse files Browse the repository at this point in the history
  • Loading branch information
thalismind committed Jan 12, 2025
1 parent a947c85 commit a278bcd
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,21 +41,21 @@ jobs:
images: |
ghcr.io/${{ github.repository }}
- name: Build and push Docker images
- name: Build Docker images
id: push
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
with:
context: .
push: true
load: true
pull: true
push: false
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=registry,ref=${{ steps.meta.outputs.tags }}
cache-to: type=registry,ref=${{ steps.meta.outputs.tags }},mode=max
provenance: false

# 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
- name: Push Docker images to ghcr.io
run: |
docker push ghcr.io/${{ github.repository }}:${{ steps.meta.outputs.tags }}

0 comments on commit a278bcd

Please sign in to comment.