File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/firestore/src/api Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -50,12 +50,12 @@ jobs:
50
50
id : set-output
51
51
run : echo "CHANGED=true" >> "$GITHUB_OUTPUT";
52
52
- name : Archive build
53
- if : ${{ !cancelled() && steps.check-changed.outcome != 'success' }}
53
+ if : ${{ !cancelled() && steps.build.outcome == 'success' && steps. check-changed.outcome != 'success' }}
54
54
run : |
55
55
tar -cf build.tar --exclude=.git .
56
56
gzip build.tar
57
57
- name : Upload build archive
58
- if : ${{ !cancelled() && steps.check-changed.outcome != 'success' }}
58
+ if : ${{ !cancelled() && steps.build.outcome == 'success' && steps. check-changed.outcome != 'success' }}
59
59
uses : actions/upload-artifact@v3
60
60
with :
61
61
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