Use Bash <4 compatible method to UPPERCASE a string

This commit is contained in:
Danny Mösch
2024-11-24 16:59:47 +01:00
parent ece675cae9
commit 8ff2518c19
+3 -2
View File
@@ -46,8 +46,9 @@ jobs:
- name: Retrieve author in uppercase
id: retrieve_author
run: |
AUTHOR=${{ github.event.release.author.login }}
echo "name=${AUTHOR@U}" >> $GITHUB_OUTPUT
author=${{ github.event.release.author.login }}
AUTHOR=$(echo $author | tr '[:lower:]' '[:upper:]')
echo "name=${AUTHOR}" >> $GITHUB_OUTPUT
- name: Deploy to CocoaPods
run: make pod_publish
env: