Skip to content

Commit

Permalink
Merge pull request #3 from github/fix-oci-workflow
Browse files Browse the repository at this point in the history
Add steps missing from the GHCR publish workflow
  • Loading branch information
malancas authored Jun 4, 2024
2 parents 45214d1 + fd6c5b3 commit 255d368
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ghcr-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ jobs:
COPY artifact.bin .
EOF
- name: Set up QEMU
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0

- name: Login to GHCR
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0
with:
Expand All @@ -39,8 +45,6 @@ jobs:
context: .
platforms: 'linux/amd64,linux/arm64'
push: true
sbom: true
provenance: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest

- name: Attest artifact
Expand Down

0 comments on commit 255d368

Please sign in to comment.