-
Notifications
You must be signed in to change notification settings - Fork 1
73 lines (58 loc) · 1.5 KB
/
integration.core.yml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: Integration.Core
on:
workflow_dispatch:
workflow_call:
push:
branches:
- main
paths:
- src/Integration.Core/**
- .github/workflows/integration-core.yml
- .github/workflows/composite/**
env:
#For build process
owner: onurkanbakirci
repo: Integration
project_path: ./src/Integration.Core/
nupkg_path: ./src/Integration.Core/bin/Release/net8.0/Integration.Core.12.12.23.1.0.0.nupkg
nupkg_source: github
nupkg_secret: ${{ secrets.GITHUB_TOKEN }}
jobs:
build-lib:
name: Build Lib
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v7
with:
dotnet-version: 8.0.0
- name: Restore dependencies
run: dotnet restore
- name: Build
run: |
cd ${{env.project_path}}
dotnet build --no-restore
test-lib:
name: Test Lib
runs-on: ubuntu-latest
needs: build-lib
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Test
run: |
publish-lib:
name: Publish Lib
runs-on: ubuntu-latest
needs: test-lib
steps:
- name: Checkout repository
uses: actions/checkout@v2
- uses: ./.github/workflows/composite/publish-lib
with:
path: ${{ env.project_path }}
nupkg_path: ${{env.nupkg_path}}
source: ${{ env.nupkg_source }}
api_key: ${{ env.nupkg_secret }}