File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 87
87
if : |
88
88
runner.os == 'Windows' &&
89
89
github.event.repository.fork == false &&
90
- (github.ref_name == github.event.repository.default_branch ||
91
- startsWith(github.ref, 'refs/heads/dev') ||
92
- startsWith(github.ref, 'refs/heads/rel/') ||
93
- startsWith(github.ref, 'refs/tags/'))
90
+ startsWith(github.ref, 'refs/tags/')
94
91
with :
95
92
subject-path : |
96
93
./artifacts/bin/AspNet.Security.*/Release/**/AspNet.Security.*.dll
@@ -153,7 +150,10 @@ jobs:
153
150
runs-on : ubuntu-latest
154
151
if : |
155
152
github.event.repository.fork == false &&
156
- startsWith(github.ref, 'refs/tags/')
153
+ (github.ref_name == github.event.repository.default_branch ||
154
+ startsWith(github.ref, 'refs/heads/dev') ||
155
+ startsWith(github.ref, 'refs/heads/rel/') ||
156
+ startsWith(github.ref, 'refs/tags/'))
157
157
steps :
158
158
159
159
- name : Download packages
You can’t perform that action at this time.
0 commit comments