CI: force LANG/LC_ALL to UTF-8 in iOS workflows (CocoaPods needs it) #19

Merged
such-gitea merged 1 commits from github-such-software/hash-wallet:dev into dev 2026-05-19 08:27:46 -04:00
2 changed files with 7 additions and 0 deletions

View File

@@ -28,6 +28,10 @@ jobs:
env:
APP_IOS_TYPE: cakewallet
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:
- uses: actions/checkout@v4

View File

@@ -35,6 +35,9 @@ jobs:
env:
APP_IOS_TYPE: cakewallet
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:
- uses: actions/checkout@v4