mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2024-12-27 23:25:55 +03:00
33 lines
925 B
YAML
33 lines
925 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 Win64
|
|
run: msbuild Facepunch.Steamworks\Facepunch.Steamworks.Win64.csproj
|
|
- name: Build Win32
|
|
run: msbuild Facepunch.Steamworks\Facepunch.Steamworks.Win32.csproj
|
|
- name: Build Posix
|
|
run: msbuild Facepunch.Steamworks\Facepunch.Steamworks.Posix.csproj
|
|
|
|
- uses: actions/upload-artifact@v1
|
|
with:
|
|
name: Compiled Files
|
|
path: Facepunch.Steamworks/bin |