File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : MyGet Publish
2+
3+ on : workflow_dispatch
4+
5+ jobs :
6+ myget-push :
7+ runs-on : ubuntu-20.04
8+ if : github.ref == 'refs/heads/main'
9+ steps :
10+ - uses : actions/checkout@v2
11+ - name : Setup dotnet
12+ uses : actions/setup-dotnet@v1
13+ with :
14+ dotnet-version : ' 6.0'
15+ include-prerelease : true
16+
17+ - name : Build All
18+ working-directory : build
19+ run : |
20+ chmod +x ./build-all.sh
21+ chmod +x ../../ServiceStack.Aws/build/build.sh
22+ chmod +x ../../ServiceStack.Azure/build/build.sh
23+ chmod +x ../../ServiceStack.Blazor/build/build.sh
24+ chmod +x ../../ServiceStack.CefGlue/build/build.sh
25+ chmod +x ../../ServiceStack.Logging/build/build.sh
26+ chmod +x ../../ServiceStack.OrmLite/build/build.sh
27+ chmod +x ../../ServiceStack.Redis/build/build.sh
28+ chmod +x ../../ServiceStack.Stripe/build/build.sh
29+ chmod +x ../../ServiceStack.Text/build/build.sh
30+ chmod +x ../../ServiceStack.Core/build/build.sh
31+ ./build-all.sh
32+
You can’t perform that action at this time.
0 commit comments