forked from github-such-software/hash-wallet
CI: force LANG/LC_ALL to UTF-8 in iOS workflows (CocoaPods needs it) #19
4
.github/workflows/build-ios-sim.yml
vendored
4
.github/workflows/build-ios-sim.yml
vendored
@@ -28,6 +28,10 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
APP_IOS_TYPE: cakewallet
|
APP_IOS_TYPE: cakewallet
|
||||||
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
|
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
|
||||||
|
# CocoaPods refuses to operate when LANG is ASCII-8BIT (default for the
|
||||||
|
# Gitea runner shell). Force UTF-8 globally so `pod install` succeeds.
|
||||||
|
LANG: en_US.UTF-8
|
||||||
|
LC_ALL: en_US.UTF-8
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|||||||
3
.github/workflows/build-ios-testflight.yml
vendored
3
.github/workflows/build-ios-testflight.yml
vendored
@@ -35,6 +35,9 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
APP_IOS_TYPE: cakewallet
|
APP_IOS_TYPE: cakewallet
|
||||||
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
|
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
|
||||||
|
# CocoaPods needs UTF-8; Gitea runner shell defaults to ASCII-8BIT.
|
||||||
|
LANG: en_US.UTF-8
|
||||||
|
LC_ALL: en_US.UTF-8
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|||||||
Reference in New Issue
Block a user