Skip to content

Commit

Permalink
fix(ci): update image tags to include registry path
Browse files Browse the repository at this point in the history
  • Loading branch information
RedStar071 committed Nov 6, 2024
1 parent 4e8c6f1 commit 1158cf3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ on:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
LATEST_TAG: ${{ github.repository }}:latest
HASH_TAG: ${{ github.repository }}:${{ github.sha }}
LATEST_TAG: ghcr.io/${{ github.repository }}:latest
HASH_TAG: ghcr.io/${{ github.repository }}:${{ github.sha }}

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
STABLE_TAG: ${{ github.repository }}:stable
STABLE_TAG: ghcr.io/${{ github.repository }}:latest

jobs:
build:
Expand Down

0 comments on commit 1158cf3

Please sign in to comment.