Skip to content

Commit e851f05

Browse files
committed
Fix ghdr repo name
Signed-off-by: Marvin Froeder <marvin@datasqrl.com>
1 parent 938b274 commit e851f05

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/uber-jar.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
FLINK_PROFILE: [flink-1.19, flink-1.20]
2424

2525
env:
26-
DOCKER_REPO: datasqrl/flink-jar-runner
2726
VERSION: ${{ github.event_name == 'release' && github.event.action == 'created' && github.ref_name || 'snapshot' }}
2827

2928
steps:
@@ -77,10 +76,9 @@ jobs:
7776
working-directory: ./flink-jar-runner/target/
7877
run: |
7978
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
80-
REPO=$(echo "${{ github.repository }}" | tr '[:upper:]' '[:lower:]')
81-
IMAGE=ghcr.io/$REPO/flink-jar-runner:pr-${{ github.event.number }}-${{ matrix.FLINK_PROFILE }}
79+
IMAGE=ghcr.io/datasqrl/flink-sql-runner:pr-${{ github.event.number }}-${{ matrix.FLINK_PROFILE }}
8280
else
83-
IMAGE=${{ env.DOCKER_REPO }}:${{ env.VERSION }}-${{ matrix.FLINK_PROFILE }}
81+
IMAGE=datasqrl/flink-jar-runner:${{ env.VERSION }}-${{ matrix.FLINK_PROFILE }}
8482
fi
8583
8684
echo "Building image: $IMAGE"

0 commit comments

Comments
 (0)