-
Notifications
You must be signed in to change notification settings - Fork 17
79 lines (67 loc) · 2.61 KB
/
Copy pathactions.yml
File metadata and controls
79 lines (67 loc) · 2.61 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: Build
on:
push:
branches:
- master
- develop
paths:
- '**'
- '!.editorconfig'
- '!.gitattributes'
- '!.gitignore'
- '!*.md'
- '!LICENSE'
env:
VERBOSITY: 'Normal'
CONFIGURATION: 'Debug'
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
jobs:
Build:
name: Build TinyCLR
runs-on: [windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Extract build information into variables
id: info
run: |
echo "##[set-output name=build;]$(echo $(git rev-list --count HEAD))"
echo "##[set-output name=copyright;]$(echo © $(date -u +%Y) Bytewizer. All rights reserved.)"
- name: Show build information
run: |
echo build=${{ steps.info.outputs.build }}
echo copyright=${{ steps.info.outputs.copyright }}
- name: Setup msbuild
uses: microsoft/setup-msbuild@v1.1
- name: Setup nuget
uses: nuget/setup-nuget@v1.0.5
- name: Restore TinyCLR project
working-directory: src
run: >-
nuget restore Bytewizer.TinyCLR.Microserver.sln -verbosity ${env:VERBOSITY}
- name: Build and pack TinyCLR libraries
working-directory: src
run: >-
msbuild Bytewizer.TinyCLR.Microserver.sln -t:pack -verbosity:${env:VERBOSITY}
-p:PackageOutputPath=\builds\artifacts
-p:BuildNumber="${{ steps.info.outputs.build }}"
-p:Copyright="${{ steps.info.outputs.copyright }}"
-p:VersionPrefix="2.1.7"
-p:VersionSuffix=preview.${{ steps.info.outputs.build }}
-p:Configuration=${env:CONFIGURATION}
-p:ContinuousIntegrationBuild=true
-p:DebugType="embedded"
-p:Deterministic=true
- name: Upload build artifacts
uses: actions/upload-artifact@v2.3.1
with:
name: Build Packages ${{ steps.info.outputs.build }}
path: \builds\artifacts
- name: Publish package to github.com
run: |
nuget sources add -name github.com -source "https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json" -username ${{ github.actor }} -password ${{secrets.PACKAGE_API_KEY}}
nuget push \builds\artifacts\**\*.nupkg -source github.com -apikey ${{secrets.PACKAGE_API_KEY}} -skipduplicate
- name: Publish package to test nuget.org
run: |
nuget sources add -name nugettest.org -source "https://apiint.nugettest.org/v3/index.json" -username ${{ github.actor }} -password ${{secrets.NUGET_BUILD_API_KEY}}
nuget push \builds\artifacts\**\*.nupkg -source nugettest.org -apikey ${{secrets.NUGET_BUILD_API_KEY}} -skipduplicate