Skip to content

Commit

Permalink
ci: add workflow to upload theme packages to myget
Browse files Browse the repository at this point in the history
  • Loading branch information
barjonp committed Jan 1, 2024
1 parent bb4cfcb commit 5ad331d
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/build-theme-packages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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 == 'OpenSilver'
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_TOKEN }} -s https://www.myget.org/F/opensilver/api/v2/package

0 comments on commit 5ad331d

Please sign in to comment.