Skip to content

Commit

Permalink
Issue #3448: try string expansion for lower caseing
Browse files Browse the repository at this point in the history
  • Loading branch information
bschmalhofer committed Jul 24, 2024
1 parent 8be88a5 commit 9baa5ac
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/docker_image_update_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@ jobs:

- name: Setup for the branch rel-11_1
run: |
echo "otobo_branch=rel-11_1" >> $GITHUB_ENV
echo "otobo_base_image=perl:5.40-bookworm" >> $GITHUB_ENV
echo "otobo_ref=rotheross/otobo:devel-11_1_test" >> $GITHUB_ENV
mixed_case_repository="${{ github.repository }}"
lowercased_repository="${mixed_case_repository,,}"
echo "otobo_branch=rel-11_1" >> $GITHUB_ENV
echo "otobo_base_image=perl:5.40-bookworm" >> $GITHUB_ENV
echo "otobo_ref=$lowercased_repository:devel-11_1_test" >> $GITHUB_ENV
-
# this step sets ${{ steps.check.outputs.needs-updating }}
Expand Down

0 comments on commit 9baa5ac

Please sign in to comment.