Skip to content

Commit f12759b

Browse files
iljukhaputdimkanovikov
authored andcommitted
Update workflows to allow symbol uploads from 'bugsplat' branch
1 parent 40c4bfd commit f12759b

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/build_starc_linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
npm i -g node-dump-syms
108108
109109
- name: Upload Symbols for .so files
110-
if: github.ref == 'refs/heads/master'
110+
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bugsplat'
111111
uses: BugSplat-Git/symbol-upload@main
112112
with:
113113
username: "${{ secrets.BUGSPLAT_USER }}"
@@ -121,7 +121,7 @@ jobs:
121121
dumpSyms: true
122122

123123
- name: Upload Symbols for starcapp
124-
if: github.ref == 'refs/heads/master'
124+
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bugsplat'
125125
uses: BugSplat-Git/symbol-upload@main
126126
with:
127127
username: "${{ secrets.BUGSPLAT_USER }}"
@@ -247,7 +247,7 @@ jobs:
247247
npm i -g node-dump-syms
248248
249249
- name: Upload Symbols for .so files
250-
if: github.ref == 'refs/heads/master'
250+
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bugsplat'
251251
uses: BugSplat-Git/symbol-upload@main
252252
with:
253253
username: "${{ secrets.BUGSPLAT_USER }}"
@@ -261,7 +261,7 @@ jobs:
261261
dumpSyms: true
262262

263263
- name: Upload Symbols for starcapp
264-
if: github.ref == 'refs/heads/master'
264+
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bugsplat'
265265
uses: BugSplat-Git/symbol-upload@main
266266
with:
267267
username: "${{ secrets.BUGSPLAT_USER }}"

.github/workflows/build_starc_mac.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
make -j4
7575
7676
- name: Upload debug symbols
77-
if: github.ref == 'refs/heads/master'
77+
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bugsplat'
7878
uses: BugSplat-Git/symbol-upload@main
7979
with:
8080
username: "${{ secrets.BUGSPLAT_USER }}"
@@ -177,7 +177,7 @@ jobs:
177177
make -j4
178178
179179
- name: Upload debug symbols
180-
if: github.ref == 'refs/heads/master'
180+
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bugsplat'
181181
uses: BugSplat-Git/symbol-upload@main
182182
with:
183183
username: "${{ secrets.BUGSPLAT_USER }}"

.github/workflows/build_starc_windows.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
npm i -g node-dump-syms
110110
111111
- name: Upload debug symbols from _build folder
112-
if: github.ref == 'refs/heads/master'
112+
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bugsplat'
113113
uses: BugSplat-Git/symbol-upload@main
114114
with:
115115
username: "${{ secrets.BUGSPLAT_USER }}"
@@ -123,7 +123,7 @@ jobs:
123123
dumpSyms: true
124124

125125
- name: Upload debug symbols from _build/plugins folder
126-
if: github.ref == 'refs/heads/master'
126+
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bugsplat'
127127
uses: BugSplat-Git/symbol-upload@main
128128
with:
129129
username: "${{ secrets.BUGSPLAT_USER }}"
@@ -266,7 +266,7 @@ jobs:
266266
npm i -g node-dump-syms
267267
268268
- name: Upload debug symbols from _build folder
269-
if: github.ref == 'refs/heads/master'
269+
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bugsplat'
270270
uses: BugSplat-Git/symbol-upload@main
271271
with:
272272
username: "${{ secrets.BUGSPLAT_USER }}"
@@ -280,7 +280,7 @@ jobs:
280280
dumpSyms: true
281281

282282
- name: Upload debug symbols from _build/plugins folder
283-
if: github.ref == 'refs/heads/master'
283+
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bugsplat'
284284
uses: BugSplat-Git/symbol-upload@main
285285
with:
286286
username: "${{ secrets.BUGSPLAT_USER }}"
@@ -422,7 +422,7 @@ jobs:
422422
npm i -g node-dump-syms
423423
424424
- name: Upload debug symbols from _build folder
425-
if: github.ref == 'refs/heads/master'
425+
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bugsplat'
426426
uses: BugSplat-Git/symbol-upload@main
427427
with:
428428
username: "${{ secrets.BUGSPLAT_USER }}"
@@ -436,7 +436,7 @@ jobs:
436436
dumpSyms: true
437437

438438
- name: Upload debug symbols from _build/plugins folder
439-
if: github.ref == 'refs/heads/master'
439+
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bugsplat'
440440
uses: BugSplat-Git/symbol-upload@main
441441
with:
442442
username: "${{ secrets.BUGSPLAT_USER }}"

0 commit comments

Comments
 (0)