Skip to content

Commit 9baa5ac

Browse files
committed
Issue #3448: try string expansion for lower caseing
1 parent 8be88a5 commit 9baa5ac

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/docker_image_update_checker.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@ jobs:
2424

2525
- name: Setup for the branch rel-11_1
2626
run: |
27-
echo "otobo_branch=rel-11_1" >> $GITHUB_ENV
28-
echo "otobo_base_image=perl:5.40-bookworm" >> $GITHUB_ENV
29-
echo "otobo_ref=rotheross/otobo:devel-11_1_test" >> $GITHUB_ENV
27+
mixed_case_repository="${{ github.repository }}"
28+
lowercased_repository="${mixed_case_repository,,}"
29+
echo "otobo_branch=rel-11_1" >> $GITHUB_ENV
30+
echo "otobo_base_image=perl:5.40-bookworm" >> $GITHUB_ENV
31+
echo "otobo_ref=$lowercased_repository:devel-11_1_test" >> $GITHUB_ENV
3032
3133
-
3234
# this step sets ${{ steps.check.outputs.needs-updating }}

0 commit comments

Comments
 (0)