Skip to content

Commit 8e7f95c

Browse files
committed
fix
1 parent 6d86c84 commit 8e7f95c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test-changed-firestore.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,11 @@ jobs:
3636
- name: build
3737
id: build
3838
run: yarn build:changed firestore | egrep "Skipping all"
39-
# Only continue when "Skipping all is not found"
39+
# Continue when "Skipping all" is not found
4040
continue-on-error: true
4141
- name: set output
42+
# This means "Skipping all" was not found
43+
if: steps.build.outcome != 'success'
4244
id: set-output
4345
run: echo "CHANGED=true" >> "$GITHUB_OUTPUT";
4446
- name: Archive build

0 commit comments

Comments
 (0)