Skip to content

Commit 1703ea2

Browse files
authored
ISSUE #631: lowercase the image repository name in github actions (#919)
1 parent fd60367 commit 1703ea2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/build-notebooks-TEMPLATE.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@ jobs:
4242

4343
steps:
4444

45+
# image repository name must be lowercase
46+
- name: downcase IMAGE_REGISTRY and CACHE
47+
run: |
48+
echo "IMAGE_REGISTRY=${IMAGE_REGISTRY,,}" >>${GITHUB_ENV}
49+
echo "CACHE=${CACHE,,}" >>${GITHUB_ENV}
50+
4551
- uses: actions/checkout@v4
4652

4753
- run: mkdir -p $TMPDIR

0 commit comments

Comments
 (0)