Skip to content

Commit

Permalink
Merge pull request Hubs-Foundation#6530 from Hubs-Foundation/custom-d…
Browse files Browse the repository at this point in the history
…ocker-workflow-force-lowercase-repo-name

Force the repository name to be lowercase in the custom docker workflow
  • Loading branch information
Exairnous authored Feb 25, 2025
2 parents 6860685 + 554309a commit 824fc13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/custom-docker-build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ jobs:
echo ::add-mask::$PASSWORD
echo Registry_Password=$PASSWORD >> $GITHUB_ENV
- name: Add the repository name as an env variable
- name: Add the repository name as an env variable # Lowercase is forced to prevent errors.
run: |
echo "repo_name=${GITHUB_REPOSITORY#*/}" >> "$GITHUB_ENV"
echo "repo_name=${GITHUB_REPOSITORY#*/}" | tr "[:upper:]" "[:lower:]" >> "$GITHUB_ENV"
# Code
- name: Checkout repository
Expand Down

0 comments on commit 824fc13

Please sign in to comment.