Skip to content

Commit

Permalink
Fix release-image.yml (#92)
Browse files Browse the repository at this point in the history
After moving the workflow to a new file, it seems the environment wasn't copied. So the images variable was set to "/", and so it failed with the error "
buildx failed with: ERROR: invalid tag "/:0.6.6": invalid reference format"
  • Loading branch information
mscherer authored Jul 19, 2023
1 parent dc88824 commit 113838d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
release:
types: [published]

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
push_to_registry:
name: Push Docker image to GHCR
Expand Down

0 comments on commit 113838d

Please sign in to comment.