Skip to content

Commit

Permalink
chore: log updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven0351 committed Apr 12, 2024
1 parent 523bb57 commit 13a5ac6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:
- name: Build Capacitor and Cordova
run: |
set -eo pipefail
./build-cap ${{ inputs.release-version }} | tee -a capacitor-build.log | xcbeautify --renderer github-actions
./build-cap ${{ inputs.release-version }}
- name: Archive Log
uses: actions/upload-artifact@v4
with:
name: capacitor-build.log
path: capacitor-build.log
name: capacitor-build
path: capacitor-*-build.log
- name: Sign Capacitor xcframework
uses: ionic-team/sign-xcframework@main
with:
Expand Down
4 changes: 2 additions & 2 deletions build-cap
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build_capacitor_simulator() {
-archivePath ./Build/iOS-Simulator \
-configuration Release \
SKIP_INSTALL=NO \
BUILD_LIBRARY_FOR_DISTRIBUTION=YES
BUILD_LIBRARY_FOR_DISTRIBUTION=YES | tee -a ../../../capacitor-simulator-build.log | xcbeautify --renderer github-actions
}

build_capacitor_ios() {
Expand All @@ -20,7 +20,7 @@ build_capacitor_ios() {
SKIP_INSTALL=NO \
SWIFT_SERIALIZE_DEBUGGING_OPTIONS=NO \
DEBUG_INFORMATION_FORMAT="dwarf-with-dsym" \
BUILD_LIBRARY_FOR_DISTRIBUTION=YES
BUILD_LIBRARY_FOR_DISTRIBUTION=YES | tee -a ../../../capacitor-ios-build.log | xcbeautify --renderer github-actions
}

create_xcframeworks() {
Expand Down

0 comments on commit 13a5ac6

Please sign in to comment.