mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
Use Bash <4 compatible method to UPPERCASE a string
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user