mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2024-12-28 15:45:29 +03:00
25 lines
617 B
YAML
25 lines
617 B
YAML
name: Build All
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: setup-msbuild
|
|
uses: microsoft/setup-msbuild@v1
|
|
|
|
- name: Restore Win64
|
|
run: dotnet restore Facepunch.Steamworks\Facepunch.Steamworks.Win64.csproj
|
|
- name: Restore Win32
|
|
run: dotnet restore Facepunch.Steamworks\Facepunch.Steamworks.Win32.csproj
|
|
- name: Restore Posix
|
|
run: dotnet restore Facepunch.Steamworks\Facepunch.Steamworks.Posix.csproj
|
|
|
|
- name: Build with msbuild
|
|
run: msbuild Facepunch.Steamworks\Facepunch.Steamworks.Win64.csproj
|