From e2f736471384e3757a261dd31deb17d4242bae35 Mon Sep 17 00:00:00 2001 From: Darren Reid Date: Thu, 10 Feb 2022 11:19:54 +1100 Subject: [PATCH 1/2] Create myget-push.yml --- .github/workflows/myget-push.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/myget-push.yml diff --git a/.github/workflows/myget-push.yml b/.github/workflows/myget-push.yml new file mode 100644 index 00000000000..e2a04be56bd --- /dev/null +++ b/.github/workflows/myget-push.yml @@ -0,0 +1,32 @@ +name: MyGet Publish + +on: workflow_dispatch + +jobs: + myget-push: + runs-on: ubuntu-20.04 + if: github.ref == 'refs/heads/main' + steps: + - uses: actions/checkout@v2 + - name: Setup dotnet + uses: actions/setup-dotnet@v1 + with: + dotnet-version: '6.0' + include-prerelease: true + + - name: Build All + working-directory: build + run: | + chmod +x ./build-all.sh + chmod +x ../../ServiceStack.Aws/build/build.sh + chmod +x ../../ServiceStack.Azure/build/build.sh + chmod +x ../../ServiceStack.Blazor/build/build.sh + chmod +x ../../ServiceStack.CefGlue/build/build.sh + chmod +x ../../ServiceStack.Logging/build/build.sh + chmod +x ../../ServiceStack.OrmLite/build/build.sh + chmod +x ../../ServiceStack.Redis/build/build.sh + chmod +x ../../ServiceStack.Stripe/build/build.sh + chmod +x ../../ServiceStack.Text/build/build.sh + chmod +x ../../ServiceStack.Core/build/build.sh + ./build-all.sh + From 639c35fe61c9210ff3492a39cec093b96cec65ba Mon Sep 17 00:00:00 2001 From: Darren Reid Date: Thu, 10 Feb 2022 11:28:37 +1100 Subject: [PATCH 2/2] Delete myget-push.yml --- .github/workflows/myget-push.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/myget-push.yml diff --git a/.github/workflows/myget-push.yml b/.github/workflows/myget-push.yml deleted file mode 100644 index e2a04be56bd..00000000000 --- a/.github/workflows/myget-push.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: MyGet Publish - -on: workflow_dispatch - -jobs: - myget-push: - runs-on: ubuntu-20.04 - if: github.ref == 'refs/heads/main' - steps: - - uses: actions/checkout@v2 - - name: Setup dotnet - uses: actions/setup-dotnet@v1 - with: - dotnet-version: '6.0' - include-prerelease: true - - - name: Build All - working-directory: build - run: | - chmod +x ./build-all.sh - chmod +x ../../ServiceStack.Aws/build/build.sh - chmod +x ../../ServiceStack.Azure/build/build.sh - chmod +x ../../ServiceStack.Blazor/build/build.sh - chmod +x ../../ServiceStack.CefGlue/build/build.sh - chmod +x ../../ServiceStack.Logging/build/build.sh - chmod +x ../../ServiceStack.OrmLite/build/build.sh - chmod +x ../../ServiceStack.Redis/build/build.sh - chmod +x ../../ServiceStack.Stripe/build/build.sh - chmod +x ../../ServiceStack.Text/build/build.sh - chmod +x ../../ServiceStack.Core/build/build.sh - ./build-all.sh -