File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -143,6 +143,7 @@ jobs:
143
143
path : ${{ github.workspace }}/BuildRoot/Library/firebase
144
144
145
145
- name : Create Release
146
+ if : github.event_name != 'pull_request'
146
147
env :
147
148
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
148
149
run : |
@@ -326,13 +327,13 @@ jobs:
326
327
nuget pack -Properties BUILDROOT=${{ github.workspace }}\BuildRoot\Library\firebase -Suffix (git -C ${{ github.workspace }}/SourceCache/firebase-cpp-sdk log -1 --format=%h) firebase.nuspec
327
328
shell : pwsh
328
329
- uses : actions/upload-artifact@v3
329
- if : ${{ github.event_name == 'workflow_dispatch' }}
330
+ if : github.event_name != 'pull_request'
330
331
with :
331
332
name : windows-${{ matrix.arch }}.nupkg
332
333
path : com.google.firebase.windows.${{ matrix.arch }}.*.nupkg
333
334
334
335
- name : Publish NuGet Packages
335
- if : ${{ github.event_name == 'workflow_dispatch' }}
336
+ if : github.event_name != 'pull_request'
336
337
env :
337
338
NUGET_SOURCE_NAME : TheBrowserCompany
338
339
NUGET_SOURCE_URL : https://nuget.pkg.github.com/thebrowsercompany/index.json
@@ -452,6 +453,7 @@ jobs:
452
453
453
454
release_android :
454
455
needs : [android]
456
+ if : github.event_name != 'pull_request'
455
457
runs-on : windows-latest
456
458
steps :
457
459
- name : Download firebase-android-arm64-v8a artifact
You can’t perform that action at this time.
0 commit comments