We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8df7f3d commit 179cc4cCopy full SHA for 179cc4c
.github/workflows/docker-ci.yaml
@@ -39,7 +39,8 @@ jobs:
39
working-directory: docker
40
run: |
41
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
+ 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
44
echo "IMAGE_TAG=${IMAGE_TAG}" >> $GITHUB_OUTPUT
45
46
- name: Container Healthcheck
0 commit comments