From bb3735f94147df0ac98c81a1d241160ed9b50240 Mon Sep 17 00:00:00 2001 From: Ubit Umarov Date: Wed, 24 Aug 2022 21:14:40 +0100 Subject: [PATCH] again Update msbuild48.yml try again Update msbuild48.yml try add a github last build artifact Update msbuild48.yml fix git action solution name Create msbuild48.yml add github test action --- .github/workflows/msbuild48.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/msbuild48.yml diff --git a/.github/workflows/msbuild48.yml b/.github/workflows/msbuild48.yml new file mode 100644 index 0000000000..949a5461ce --- /dev/null +++ b/.github/workflows/msbuild48.yml @@ -0,0 +1,30 @@ +name: .msbuild48 + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: preBuild + run: bash ${GITHUB_WORKSPACE}/runprebuild48.sh + - name: Build + run: msbuild /p:Configuration=Release OpenSim.sln + + - uses: actions/upload-artifact@v3 + with: + name: OpenSimLastBuild + path: | + path/output/bin/ + ${GITHUB_WORKSPACE}/ThirdPartyLicenses/ + ${GITHUB_WORKSPACE}/ThirdPartyLicenses + ${GITHUB_WORKSPACE}/README.md + ${GITHUB_WORKSPACE}/CONTRIBUTORS.txt +