@@ -136,6 +136,7 @@ jobs:
136136 -destination 'generic/platform=iOS' \
137137 -archivePath build/ios/Runner.xcarchive \
138138 CODE_SIGN_STYLE=Automatic \
139+ CODE_SIGN_IDENTITY="Apple Distribution" \
139140 CODE_SIGNING_REQUIRED=YES \
140141 CODE_SIGNING_ALLOWED=YES \
141142 -allowProvisioningUpdates \
@@ -156,6 +157,7 @@ jobs:
156157 -authenticationKeyID $APP_STORE_CONNECT_API_KEY_ID \
157158 -authenticationKeyPath "$HOME/.private_keys/AuthKey_$APP_STORE_CONNECT_API_KEY_ID.p8" \
158159 CODE_SIGN_STYLE=Automatic \
160+ CODE_SIGN_IDENTITY="Apple Distribution" \
159161 CODE_SIGNING_REQUIRED=YES \
160162 CODE_SIGNING_ALLOWED=YES \
161163 | xcbeautify --renderer github-actions
@@ -376,15 +378,15 @@ jobs:
376378
377379 - name : Output git log
378380 run : |
379- # LAST TAG
380- LAST_TAG=$(git describe --tags --abbrev=0)
381- git log $LAST_TAG..HEAD --pretty=format:"- [%ad] %an: %s %h" >> changelog.tmp
382-
383- # 最大2000文字
384- head -c 2000 changelog.tmp > changelog.txt
385- if [ $(wc -c < changelog.txt) -gt 2000 ]; then
386- echo '...' >> changelog.txt
387- fi
381+ # LAST TAG
382+ LAST_TAG=$(git describe --tags --abbrev=0)
383+ git log $LAST_TAG..HEAD --pretty=format:"- [%ad] %an: %s %h" >> changelog.tmp
384+
385+ # 最大2000文字
386+ head -c 2000 changelog.tmp > changelog.txt
387+ if [ $(wc -c < changelog.txt) -gt 2000 ]; then
388+ echo '...' >> changelog.txt
389+ fi
388390
389391 # https://github.com/google-github-actions/auth
390392 - name : Authenticate to Google Cloud Platform
0 commit comments