Skip to content

Commit 01bd82b

Browse files
committed
Minor changes
1 parent a495485 commit 01bd82b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

preternatural-build/action.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ runs:
9494
key: ${{ runner.os }}-${{ github.repository }}-${{ github.ref_name }}-derived-data
9595

9696
- name: Find and copy all xcactivity logs
97-
if: failure()
97+
if: steps.build.outputs.build_succeeded != 'true'
9898
continue-on-error: true
99-
shell: zsh
99+
shell: bash
100100
run: |
101101
DERIVED_DATA_PATH=$HOME/${{ inputs.derived_data_path }}
102102
echo "Searching for logs in: $DERIVED_DATA_PATH"
@@ -122,16 +122,16 @@ runs:
122122
fi
123123
124124
- name: Install xclogparser
125-
if: failure()
125+
if: steps.build.outputs.build_succeeded != 'true'
126126
continue-on-error: true
127-
shell: zsh
127+
shell: bash
128128
run: |
129129
brew install xclogparser
130130
131131
- name: Convert logs to JSON and print
132-
if: failure()
132+
if: steps.build.outputs.build_succeeded != 'true'
133133
continue-on-error: true
134-
shell: zsh
134+
shell: bash
135135
run: |
136136
mkdir -p ./json_logs
137137
for log in ./artifacts/*.xcactivitylog; do
@@ -142,7 +142,7 @@ runs:
142142
done
143143
144144
- name: Upload xcactivity logs (JSON)
145-
if: failure()
145+
if: steps.build.outputs.build_succeeded != 'true'
146146
continue-on-error: true
147147
uses: actions/upload-artifact@v4
148148
with:
@@ -151,7 +151,7 @@ runs:
151151
if-no-files-found: error
152152

153153
- name: Upload xcactivity logs (Raw)
154-
if: failure()
154+
if: steps.build.outputs.build_succeeded != 'true'
155155
continue-on-error: true
156156
uses: actions/upload-artifact@v4
157157
with:

0 commit comments

Comments
 (0)