forked from mikeedwards83/Glass.Mapper
-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (40 loc) · 2.52 KB
/
Copy pathDev-CI.yml
File metadata and controls
56 lines (40 loc) · 2.52 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
51
52
53
54
55
56
# Basic CI build
name: Dev CI
# Controls when the action will run. Triggers the workflow on push
# events but only for the develop branch
on:
pull_request:
branches: [ develop ]
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: windows-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@master
- name: Dotnet build Sitecore v10.4.0
run: dotnet build Glass.Mapper.sln --packages .\NuGetv104 --configfile .nuget\NuGet.Config -p:ScVersion=10.4.0
- name: Dotnet build Sitecore v10.3.0
run: dotnet build Glass.Mapper.sln --packages .\NuGetv103 --configfile .nuget\NuGet.Config -p:ScVersion=10.3.0
- name: Dotnet build Sitecore v10.2.0
run: dotnet build Glass.Mapper.sln --packages .\NuGetv102 --configfile .nuget\NuGet.Config -p:ScVersion=10.2.0
- name: Dotnet build Sitecore v10.1.0
run: dotnet build Glass.Mapper.sln --packages .\NuGetv101 --configfile .nuget\NuGet.Config -p:ScVersion=10.1.0
- name: Dotnet build Sitecore v10.0
run: dotnet build Glass.Mapper.sln --packages .\NuGetv100 --configfile .nuget\NuGet.Config -p:ScVersion=10.0.0
- name: Dotnet build Sitecore v9.3
run: dotnet build Glass.Mapper.sln --packages .\NuGetv93 --configfile .nuget\NuGet.Config -p:ScVersion=9.3.0
- name: Dotnet build Sitecore v9.2
run: dotnet build Glass.Mapper.sln --packages .\NuGetv92 --configfile .nuget\NuGet.Config -p:ScVersion=9.2.0
- name: Dotnet build Sitecore v9.1
run: dotnet build Glass.Mapper.sln --packages .\NuGetv91 --configfile .nuget\NuGet.Config -p:ScVersion=9.1.0
- name: Dotnet build Sitecore v9.0
run: dotnet build Glass.Mapper.sln --packages .\NuGetv90 --configfile .nuget\NuGet.Config -p:ScVersion=9.0.180604
- name: Dotnet build Sitecore v8.2
run: dotnet build Glass.Mapper.sln --packages .\NuGetv82 --configfile .nuget\NuGet.Config -p:ScVersion=8.2.180406
- name: Dotnet build Sitecore v8.1
run: dotnet build Glass.Mapper.sln --packages .\NuGetv81 --configfile .nuget\NuGet.Config -p:ScVersion=8.1.160519
- name: Dotnet build Sitecore v8.0
run: dotnet build Glass.Mapper.sln --packages .\NuGetv80 --configfile .nuget\NuGet.Config -p:ScVersion=8.0.160115