Skip to content
This repository has been archived by the owner on Dec 25, 2024. It is now read-only.

Commit

Permalink
ci: docker push proper arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
tulilirockz authored Mar 15, 2024
1 parent 0d0deb1 commit 5afdc9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
context: .
push: false
file: /tmp/Containerfile
tags: ${{ steps.recipes_meta.outputs.IMAGE_NAME }}:latest
tags: ${{env.IMAGE_REGISTRY}}/${{ steps.recipes_meta.outputs.IMAGE_NAME }}:latest
labels: ${{ steps.meta.outputs.labels }}

# Workaround bug where capital letters in your GitHub username make it impossible to push to GHCR.
Expand All @@ -114,7 +114,7 @@ jobs:
password: ${{ github.token }}

- name: Push To GHCR Image Registry
run: docker push --disable-content-trust ${{ steps.recipes_meta.outputs.IMAGE_NAME }}:latest ${{ env.IMAGE_REGISTRY }}/${{ steps.recipes_meta.outputs.IMAGE_NAME }}
run: docker push --disable-content-trust ${{ env.IMAGE_REGISTRY }}/${{ steps.recipes_meta.outputs.IMAGE_NAME }}

- name: Sign container image
uses: EyeCantCU/cosign-action/[email protected]
Expand Down

0 comments on commit 5afdc9d

Please sign in to comment.