mirror of
https://github.com/ivabus/roulette
synced 2024-11-22 16:35:09 +03:00
Delete dotnet-win.yml
This commit is contained in:
parent
69460aeb6f
commit
c6f274b330
1 changed files with 0 additions and 34 deletions
34
.github/workflows/dotnet-win.yml
vendored
34
.github/workflows/dotnet-win.yml
vendored
|
@ -1,34 +0,0 @@
|
||||||
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.exe publish/roulette-win-x64.exe
|
|
||||||
- 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.exe publish/roulette-win-arm64.exe
|
|
||||||
|
|
||||||
|
|
||||||
- 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.exe;publish/roulette-win-arm64.exe
|
|
||||||
update_latest_release: true
|
|
Loading…
Reference in a new issue