forked from openmod/openmod
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (36 loc) · 947 Bytes
/
Copy pathOpenMod.Bootstrapper.yaml
File metadata and controls
37 lines (36 loc) · 947 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
37
name: OpenMod.Bootstrapper
on:
create:
tags:
- "*"
push:
branches: [ main ]
paths:
- '.github/workflows/OpenMod.Bootstrapper.yaml'
- 'framework/OpenMod.Bootstrapper/**'
- 'framework/OpenMod.NuGet/**'
pull_request:
branches: [ main ]
paths:
- '.github/workflows/OpenMod.Bootstrapper.yaml'
- 'framework/OpenMod.Bootstrapper/**'
- 'framework/OpenMod.NuGet/**'
jobs:
build:
name: "OpenMod.Bootstrapper 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.Bootstrapper
github_token: ${{ secrets.GITHUB_TOKEN }}
nuget_key: ${{ secrets.NUGET_DEPLOY_KEY }}
nuget_push: true