forked from OpenSilver/OpenSilver
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (35 loc) · 1.26 KB
/
build-theme-packages.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
name: OpenSilver Themes Build
on:
workflow_dispatch:
inputs:
opensilver-version:
description: 'OpenSilver version'
required: true
version:
description: 'Theme packages version'
required: true
jobs:
OpenSilverThemesBuild:
#We should not run these steps on the forks by default.
if: github.repository_owner == 'barjonp'
runs-on: windows-latest
steps:
- uses: microsoft/setup-msbuild@v1.1
- name: Inject slug/short variables
uses: rlespinasse/github-slug-action@v3.x
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.203'
- name: Clone OpenSilver repo
uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
- name: Restore Packages
run: ./restore-packages-opensilver.bat
- name: Update compiler
run: ./build/update-compiler.bat
- name: Build Theme Packages
run: ./build/Build_Themes.bat ${{ github.event.inputs.opensilver-version }} ${{ github.event.inputs.version }}
- name: Upload packages to MyGet
run: |
dotnet nuget push "build\output\OpenSilver\*.nupkg" -k ${{ secrets.MYGET_TEMP_TOKEN }} -s https://www.myget.org/F/opensilver-temp/api/v2/package