mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-18 09:35:48 +00:00
build pipeline stubs
This commit is contained in:
parent
9dfa730a4f
commit
fe3df5498b
4 changed files with 57 additions and 0 deletions
42
.github/workflows/asm.yml
vendored
Normal file
42
.github/workflows/asm.yml
vendored
Normal file
|
|
@ -0,0 +1,42 @@
|
||||||
|
name: Build and Deploy ASM
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
|
||||||
|
env:
|
||||||
|
# Path to the solution file relative to the root of the project.
|
||||||
|
SOLUTION_FILE_PATH: .src/ARKServerManager/
|
||||||
|
|
||||||
|
# Configuration type to build.
|
||||||
|
BUILD_CONFIGURATION: Release
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: windows-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Add MSBuild to PATH
|
||||||
|
uses: microsoft/setup-msbuild@v1.0.2
|
||||||
|
|
||||||
|
- name: Restore NuGet packages
|
||||||
|
working-directory: ${{env.GITHUB_WORKSPACE}}
|
||||||
|
run: nuget restore ${{env.SOLUTION_FILE_PATH}}
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
working-directory: ${{env.GITHUB_WORKSPACE}}
|
||||||
|
# Add additional options to the MSBuild command line here (like platform or verbosity level).
|
||||||
|
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
|
||||||
|
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} /t:publish /p:PublishDir="publish/" ${{env.SOLUTION_FILE_PATH}}
|
||||||
|
|
||||||
|
- name: Upload artifact for deployment job
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: .net-app
|
||||||
|
path: ${{env.SOLUTION_FILE_PATH}}/publish
|
||||||
|
|
||||||
|
#deploy:
|
||||||
|
# runs-on: self-hosted
|
||||||
|
# needs: build
|
||||||
5
.github/workflows/csm.yml
vendored
Normal file
5
.github/workflows/csm.yml
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
name: Build and Deploy CSM
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
5
.github/workflows/discord.yml
vendored
Normal file
5
.github/workflows/discord.yml
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
name: Build and Deploy Discord Plugin
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
|
@ -19,7 +19,12 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{F8DB
|
||||||
EndProject
|
EndProject
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{385BF0EA-D67F-44A4-910C-2E6E84A38525}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{385BF0EA-D67F-44A4-910C-2E6E84A38525}"
|
||||||
ProjectSection(SolutionItems) = preProject
|
ProjectSection(SolutionItems) = preProject
|
||||||
|
..\.github\workflows\asm.yml = ..\.github\workflows\asm.yml
|
||||||
|
..\.github\workflows\csm.yml = ..\.github\workflows\csm.yml
|
||||||
|
..\.github\workflows\discord.yml = ..\.github\workflows\discord.yml
|
||||||
|
..\.github\workflows\msbuild.yml = ..\.github\workflows\msbuild.yml
|
||||||
Nuget.config = Nuget.config
|
Nuget.config = Nuget.config
|
||||||
|
..\.github\workflows\webapi.yml = ..\.github\workflows\webapi.yml
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServerManager.Updater", "ServerManager.Updater\ServerManager.Updater.csproj", "{3E0C9EE6-780F-4FEF-BA03-E38062A5FDB6}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServerManager.Updater", "ServerManager.Updater\ServerManager.Updater.csproj", "{3E0C9EE6-780F-4FEF-BA03-E38062A5FDB6}"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue