73 lines
2.4 KiB
YAML
73 lines
2.4 KiB
YAML
name: Lagrange.OneBot Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- "Lagrange.Core/**"
|
|
- "Lagrange.OneBot/**"
|
|
- "Lagrange.Core.sln"
|
|
- "LICENSE"
|
|
- "!Lagrange.OneBot/Resources/Dockerfile"
|
|
- "!Lagrange.OneBot/Resources/docker-entrypoint.sh"
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- "Lagrange.Core/**"
|
|
- "Lagrange.OneBot/**"
|
|
- "Lagrange.Core.sln"
|
|
- "LICENSE"
|
|
- "!Lagrange.OneBot/Resources/Dockerfile"
|
|
- "!Lagrange.OneBot/Resources/docker-entrypoint.sh"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
runtimeIdentifier:
|
|
[
|
|
win-x64,
|
|
win-x86,
|
|
linux-x64,
|
|
linux-arm,
|
|
linux-arm64,
|
|
osx-x64,
|
|
osx-arm64,
|
|
linux-musl-x64,
|
|
linux-musl-arm,
|
|
linux-musl-arm64,
|
|
]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install .NET
|
|
uses: actions/setup-dotnet@v4
|
|
with:
|
|
dotnet-version: '9.0.x'
|
|
|
|
- name: Build Lagrange.OneBot .NET 8.0
|
|
run: dotnet publish Lagrange.OneBot/Lagrange.OneBot.csproj --no-self-contained -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:DebugType=none -p:RuntimeIdentifier=${{ matrix.runtimeIdentifier }} --framework net8.0
|
|
|
|
- name: Build Lagrange.OneBot .NET 9.0
|
|
run: dotnet publish Lagrange.OneBot/Lagrange.OneBot.csproj --no-self-contained -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:DebugType=none -p:RuntimeIdentifier=${{ matrix.runtimeIdentifier }} --framework net9.0
|
|
|
|
- name: Upload binary files(${{ matrix.runtimeIdentifier }}) for .NET 8.0
|
|
uses: actions/upload-artifact@v4
|
|
if: github.event_name != 'pull_request'
|
|
with:
|
|
name: Lagrange.OneBot_${{ matrix.runtimeIdentifier }}_net8.0_NoSelfContained
|
|
path: Lagrange.OneBot/bin/Release/net8.0/${{ matrix.runtimeIdentifier }}/publish
|
|
|
|
- name: Upload binary files(${{ matrix.runtimeIdentifier }}) for .NET 9.0
|
|
uses: actions/upload-artifact@v4
|
|
if: github.event_name != 'pull_request'
|
|
with:
|
|
name: Lagrange.OneBot_${{ matrix.runtimeIdentifier }}_net9.0_NoSelfContained
|
|
path: Lagrange.OneBot/bin/Release/net9.0/${{ matrix.runtimeIdentifier }}/publish
|