Skip to content

Commit 179cc4c

Browse files
authored
Replace git:// with https:// in repo url (#3293)
1 parent 8df7f3d commit 179cc4c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/docker-ci.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ jobs:
3939
working-directory: docker
4040
run: |
4141
IMAGE_TAG=test-image-${{ matrix.python-version }}
42-
./build_image.sh -py "${{ matrix.python-version }}" -t "${IMAGE_TAG}" -b ${{ steps.branch-name.outputs.GITHUB_BRANCH }} -repo ${{ github.repositoryUrl }} -s
42+
REPO_URL=$(echo ${{ steps.branch-name.outputs.GITHUB_BRANCH }} | sed 's/^git:\/\//https:\/\//')
43+
./build_image.sh -py "${{ matrix.python-version }}" -t "${IMAGE_TAG}" -b "${REPO_URL}" -repo ${{ github.repositoryUrl }} -s
4344
echo "IMAGE_TAG=${IMAGE_TAG}" >> $GITHUB_OUTPUT
4445
4546
- name: Container Healthcheck

0 commit comments

Comments
 (0)