File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
packages/firestore/src/api Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 38
38
run : |
39
39
set -o pipefail
40
40
yarn build:changed firestore | tee ${{ runner.temp }}/yarn.log.txt
41
- continue-on-error : false
42
41
- name : Check if Firestore is changed
43
42
id : check-changed
44
43
run : egrep "Skipping all" ${{ runner.temp }}/yarn.log.txt
@@ -50,12 +49,12 @@ jobs:
50
49
id : set-output
51
50
run : echo "CHANGED=true" >> "$GITHUB_OUTPUT";
52
51
- name : Archive build
53
- if : ${{ !cancelled() && steps.check-changed.outcome != 'success' }}
52
+ if : ${{ !cancelled() && steps.build.outcome == 'success' && steps. check-changed.outcome != 'success' }}
54
53
run : |
55
54
tar -cf build.tar --exclude=.git .
56
55
gzip build.tar
57
56
- name : Upload build archive
58
- if : ${{ !cancelled() && steps.check-changed.outcome != 'success' }}
57
+ if : ${{ !cancelled() && steps.build.outcome == 'success' && steps. check-changed.outcome != 'success' }}
59
58
uses : actions/upload-artifact@v3
60
59
with :
61
60
name : build.tar.gz
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ export class Firestore extends LiteFirestore {
121
121
// usage throws an exception.
122
122
configureFirestore ( this ) ;
123
123
}
124
- return null ;
124
+ return this . _firestoreClient ! . terminate ( ) ;
125
125
}
126
126
}
127
127
You can’t perform that action at this time.
0 commit comments