Skip to content

Bump ReactiveUI from 18.3.1 to 19.5.39 #291

Bump ReactiveUI from 18.3.1 to 19.5.39

Bump ReactiveUI from 18.3.1 to 19.5.39 #291

Workflow file for this run

name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push events but only for the upcoming branch
push:
branches: [ upcoming ]
pull_request:
branches: [ ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Server:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
profile: [
{
name: PC,
patch_target: p,
package_path: OTAPI.PC.nupkg,
},
{
name: Mobile,
patch_target: m,
package_path: OTAPI.Mobile.nupkg,
},
{
name: tModLoader,
patch_target: t,
package_path: OTAPI.TML.nupkg,
},
]
name: ${{ matrix.profile.name }} Server
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Build the project
run: |
dotnet build OTAPI.Mods.sln
(cd OTAPI.Patcher/bin/Debug/net6.0 && exec dotnet run --project ../../../OTAPI.Patcher.csproj -patchTarget=${{ matrix.profile.patch_target }} -latest=n --framework net6.0)
dotnet build OTAPI.Server.Launcher.sln
(cd OTAPI.Server.Launcher/bin/Debug/net6.0 && exec dotnet OTAPI.Server.Launcher.dll -test-init)
- uses: actions/upload-artifact@v3
with:
name: ${{ matrix.profile.name }} NuGet Package
path: OTAPI.Patcher/bin/Debug/net6.0/${{ matrix.profile.package_path }}
- uses: actions/upload-artifact@v3
with:
name: ${{ matrix.profile.name }} Binaries
path: |
OTAPI.Patcher/bin/Debug/net6.0/artifact-*/*
- uses: actions/upload-artifact@v3
with:
name: ${{ matrix.profile.name }} Wiki MD files
path: OTAPI.Patcher/bin/Debug/net6.0/*.mfw.md