forked from openmod/openmod
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (34 loc) · 832 Bytes
/
Copy pathOpenMod.Common.yaml
File metadata and controls
36 lines (34 loc) · 832 Bytes
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
name: OpenMod.Common
on:
create:
tags:
- "*"
push:
branches: [ main ]
paths:
- '.github/workflows/OpenMod.Common.yaml'
- 'framework/OpenMod.Common/**'
pull_request:
branches: [ main ]
paths:
- '.github/workflows/OpenMod.Common.yaml'
- 'framework/OpenMod.Common/**'
jobs:
build:
name: "OpenMod.Common Build"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v1
name: Setup .NET
with:
dotnet-version: 5.0.100
- uses: ./.github/actions/project-build
id: project-build
with:
project_path: framework/OpenMod.Common
github_token: ${{ secrets.GITHUB_TOKEN }}
nuget_key: ${{ secrets.NUGET_DEPLOY_KEY }}
nuget_push: true