From e0cf3c2ac8b990f51ca67e06b6ab573b851e7d4c Mon Sep 17 00:00:00 2001 From: Ivan Bushchik Date: Wed, 9 Feb 2022 16:51:20 +0300 Subject: [PATCH] Create dotnet-win.yml --- .github/workflows/dotnet-win.yml | 34 ++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/dotnet-win.yml diff --git a/.github/workflows/dotnet-win.yml b/.github/workflows/dotnet-win.yml new file mode 100644 index 0000000..38cb471 --- /dev/null +++ b/.github/workflows/dotnet-win.yml @@ -0,0 +1,34 @@ +name: dotnet-win +on: + release: + types: [published] +jobs: + build: + runs-on: windows-latest + steps: + - uses: actions/checkout@v2 + - name: Setup .NET + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 6.0.x + - name: Restore dependencies + run: dotnet restore + - name: Build + run: dotnet build --no-restore + - name: Test + run: dotnet test --no-build --verbosity normal + - name: Prepare for building + run: mkdir prepublish && mkdir publish + - name: Publish on osx-x64 + run: dotnet publish --runtime win-x64 -o prepublish/win-x64/ --self-contained -p:PublishSingleFile=true && mv prepublish/win-x64/roulette publish/roulette-win-x64 + - name: Publish on linux-x64 + run: dotnet publish --runtime win-arm64 -o prepublish/win-arm64/ --self-contained -p:PublishSingleFile=true && mv prepublish/win-arm64/roulette publish/roulette-win-arm64 + + + - name: Upload To Github Release + uses: xresloader/upload-to-github-release@v1.3.2 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + file: publish/roulette-win-x64;publish/roulette-win-arm64 + update_latest_release: true