Skip to content

Commit 4450ca4

Browse files
jcrapuchettesclaude
andcommitted
Fix Docker image tag format - remove duplicate repository name
The github.repository variable already contains the full path (RedBalloon-work/postgres-flex), so we don't need to append /postgres-flex again. Fixed tags: - ghcr.io/redballoon-work/postgres-flex:15-latest Instead of: - ghcr.io/redballoon-work/postgres-flex/postgres-flex:15-latest 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 7411e7c commit 4450ca4

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ jobs:
4646
file: ./pg${{ matrix.pg_version.major }}/Dockerfile
4747
push: true
4848
tags: |
49-
ghcr.io/${{ github.repository }}/postgres-flex:${{ matrix.pg_version.major }}
50-
ghcr.io/${{ github.repository }}/postgres-flex:${{ matrix.pg_version.full }}
51-
ghcr.io/${{ github.repository }}/postgres-flex:${{ steps.tag.outputs.TAG }}-${{ matrix.pg_version.major }}
49+
ghcr.io/${{ github.repository }}:${{ matrix.pg_version.major }}
50+
ghcr.io/${{ github.repository }}:${{ matrix.pg_version.full }}
51+
ghcr.io/${{ github.repository }}:${{ steps.tag.outputs.TAG }}-${{ matrix.pg_version.major }}
5252
build-args: |
5353
PG_VERSION=${{ matrix.pg_version.full }}
54-
PG_MAJOR_VERSION=${{ matrix.pg_version.major }}
54+
PG_MAJOR_VERSION=${{ matrix.pg_version.full }}
5555
VERSION=${{ steps.tag.outputs.TAG }}
5656
cache-from: type=gha
5757
cache-to: type=gha,mode=max

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
context: .
112112
file: ./pg${{ matrix.pg_version.major }}/Dockerfile
113113
push: true
114-
tags: ghcr.io/${{ github.repository }}/postgres-flex:${{ matrix.pg_version.major }}-latest
114+
tags: ghcr.io/${{ github.repository }}:${{ matrix.pg_version.major }}-latest
115115
build-args: |
116116
PG_VERSION=${{ matrix.pg_version.full }}
117117
PG_MAJOR_VERSION=${{ matrix.pg_version.major }}

0 commit comments

Comments
 (0)