Skip to content

Commit e2f7364

Browse files
authored
Create myget-push.yml
1 parent 893f41d commit e2f7364

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

.github/workflows/myget-push.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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+

0 commit comments

Comments
 (0)