Skip to content

Commit

Permalink
Replace git:// with https:// in repo url (#3293)
Browse files Browse the repository at this point in the history
  • Loading branch information
mreso authored Aug 21, 2024
1 parent 8df7f3d commit 179cc4c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/docker-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ jobs:
working-directory: docker
run: |
IMAGE_TAG=test-image-${{ matrix.python-version }}
./build_image.sh -py "${{ matrix.python-version }}" -t "${IMAGE_TAG}" -b ${{ steps.branch-name.outputs.GITHUB_BRANCH }} -repo ${{ github.repositoryUrl }} -s
REPO_URL=$(echo ${{ steps.branch-name.outputs.GITHUB_BRANCH }} | sed 's/^git:\/\//https:\/\//')
./build_image.sh -py "${{ matrix.python-version }}" -t "${IMAGE_TAG}" -b "${REPO_URL}" -repo ${{ github.repositoryUrl }} -s
echo "IMAGE_TAG=${IMAGE_TAG}" >> $GITHUB_OUTPUT
- name: Container Healthcheck
Expand Down

0 comments on commit 179cc4c

Please sign in to comment.