Skip to content

Commit

Permalink
Update blank.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gregyjames authored Apr 27, 2024
1 parent fb1529d commit e56827a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ jobs:
steps:
- name: Convert repository name to lowercase
id: lowercase
run: echo "lowercase_repo=${{ github.repository }}". | tr '[:upper:]' '[:lower:]'
run: echo "lowercase_repo=$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV
- name: Use the lowercase repository name
run: echo "The lowercase repository name is ${{ steps.lowercase.outputs.lowercase_repo }}"
run: echo "The lowercase repository name is ${{ env.lowercase_repo }}"

0 comments on commit e56827a

Please sign in to comment.