From 4a7a7285a3dccc290874fdf9b5e4155830c4edae Mon Sep 17 00:00:00 2001 From: Paul Balogh Date: Mon, 27 Nov 2023 14:40:06 -0600 Subject: [PATCH] Update release ci to no longer rely on community extensions Fixes #78 Signed-off-by: Paul Balogh --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0a2ca03..3153db7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,12 +25,12 @@ jobs: run: | docker run --rm -u "$(id -u):$(id -g)" -v "$PWD:/xk6" \ "$IMAGE_REPOSITORY" build master \ - --with github.com/mostafa/xk6-kafka \ + --with github.com/grafana/xk6-sql \ --with github.com/grafana/xk6-output-influxdb - name: Check k6 binary run: | ./k6 version - ./k6 version | grep -qz 'xk6-output-influxdb.*xk6-kafka' + ./k6 version | grep -qz 'xk6-output-influxdb.*xk6-sql' - name: Log into ghcr.io if: ${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v') }}