updated FAQ to match server #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
name: Plugin builds | |
jobs: | |
plugin: | |
name: Build plugin | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Install .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Build GameNetworkingSockets | |
uses: lukka/run-vcpkg@v11 | |
with: | |
vcpkgGitCommitId: 61f610845fb206298a69f708104a51d651872877 | |
runVcpkgInstall: true | |
env: | |
VCPKG_INSTALLED_DIR: ${{ github.workspace }}/vcpkg_installed | |
- name: Copy GameNetworkingSockets | |
run: Copy-Item -Path ./vcpkg_installed/*/bin/* -Destination ./libs/GameNetworkingSockets -Recurse -Force | |
- name: Setup Bomb Rush Cyberfunk dependencies | |
run: ./scripts/gha.ps1 | |
- name: Build | |
run: ./scripts/build.ps1 | |
env: | |
BRCPath: ${{ github.workspace }}/local/BombRushCyberfunk | |
- name: Upload plugin artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: plugin | |
path: ./SlopCrew.Plugin/bin/Release/net462 | |
- name: Upload Thunderstore artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: thunderstore | |
path: ./thunderstore |