Skip to content

Commit

Permalink
fix iOS CI/CD issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ysmoradi committed Dec 25, 2023
1 parent 2cc9415 commit b6bdeb7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/admin-sample.cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ jobs:
cd ../../../ && dotnet new bit-bp --name AdminPanel --database SqlServer --sample Admin
- name: Set iOS universal link
run: sed -i 's/bp.bitplatform.dev/adminpanel.bitplatform.dev/g' AdminPanel/src/Client/AdminPanel.Client.Maui/Platforms/iOS/Entitlements.plist
run: awk -v old="bp.bitplatform.dev" -v new="adminpanel.bitplatform.dev" '{gsub(old, new, $0); print $0}' AdminPanel/src/Client/AdminPanel.Client.Maui/Platforms/iOS/Entitlements.plist

- name: Update appsettings.json api server address
uses: microsoft/variable-substitution@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/todo-sample.cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -287,8 +287,8 @@ jobs:
cd ../../../ && dotnet new bit-bp --name TodoSample --database SqlServer --sample Todo
- name: Set iOS universal link
run: sed -i 's/bp.bitplatform.dev/todo.bitplatform.dev/g' TodoSample/src/Client/TodoSample.Client.Maui/Platforms/iOS/Entitlements.plist

run: awk -v old="bp.bitplatform.dev" -v new="todo.bitplatform.dev" '{gsub(old, new, $0); print $0}' TodoSample/src/Client/TodoSample.Client.Maui/Platforms/iOS/Entitlements.plist
- name: Update appsettings.json api server address
uses: microsoft/variable-substitution@v1
with:
Expand Down

0 comments on commit b6bdeb7

Please sign in to comment.