This commit is contained in:
Alexander Sklar 2021-10-05 12:31:14 -07:00 коммит произвёл GitHub
Родитель 9b43410af9
Коммит 81af111d03
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 49 добавлений и 0 удалений

49
.github/workflows/publish.yml поставляемый Normal file
Просмотреть файл

@ -0,0 +1,49 @@
# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Publish
on:
release:
types: [published]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: nuget/setup-nuget@v1
- name: setup-msbuild
uses: microsoft/setup-msbuild@v1
- name: Use Node.js 14
uses: actions/setup-node@v2
with:
node-version: 14
cache: 'npm'
- name: NuGet restore
run: nuget restore example\windows\example.sln
- name: run CodeGen
run: dotnet run -verbose -winmd ..\..\example\windows\packages\Microsoft.UI.Xaml.2.6.0\lib\uap10.0\Microsoft.UI.Xaml.winmd
working-directory: package\Codegen
- name: verify no changes from CodeGen
shell: powershell
run: |
$changed = git status --porcelain=v1
if ($changed -ne $null) { throw "CodeGen detected changes" }
- name: yarn install
run: yarn install
- name: build TS
run: yarn build
- name: publish to npm
run: npm publish package
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}