-
-
Notifications
You must be signed in to change notification settings - Fork 3
50 lines (41 loc) · 1.12 KB
/
build-module-base.yml
File metadata and controls
50 lines (41 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
types: [opened, reopened, synchronize]
workflow_call:
workflow_dispatch:
name: build-module-base
env:
DOTNET_VERSION: 10.0.x
REGISTRY: ghcr.io
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup .NET SDK ${{ env.DOTNET_VERSION }}
uses: actions/setup-dotnet@v5
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Cache NuGet packages
uses: actions/cache@v4
with:
path: ~/.nuget/packages
key: module-base-nuget
restore-keys: |
module-base-nuget-
- name: Publish OpenShock Desktop Module Base
run: dotnet build ModuleBase/ModuleBase.csproj -c Release -o ./publish/ModuleBase
- name: Upload OpenShock Desktop Module Base artifacts
uses: actions/upload-artifact@v5
with:
name: OpenShock Desktop Module Base
path: ./publish/ModuleBase/**
retention-days: 1
if-no-files-found: error