-
Notifications
You must be signed in to change notification settings - Fork 2
46 lines (44 loc) · 1.3 KB
/
ci.yaml
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
name: CI
on:
push:
branches:
- "*"
tags:
- "*"
pull_request:
branches:
- "*"
jobs:
test:
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
- working-directory: WinUI3XamlPreview
run: ./scripts/ci
build:
runs-on: windows-2022
needs: ["test"]
if: startsWith(github.ref, 'refs/tags/v')
env:
VERSION: 0.1.0
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
steps:
- uses: actions/checkout@v3
- working-directory: WinUI3XamlPreview
run: |
./scripts/build -version $env:VERSION
./scripts/publish-nuget -version $env:VERSION
build-extension:
runs-on: windows-2022
needs: ["test"]
if: startsWith(github.ref, 'refs/tags/vs2022-v')
steps:
- uses: actions/checkout@v3
- uses: microsoft/[email protected]
- working-directory: extensions/WinUI3XamlPrevieVS2022
run: ./scripts/build-extension -config Release
- uses: cezarypiatek/[email protected]
with:
extension-file: './extensions/WinUI3XamlPrevieVS2022/WinUI3XamlPrevieVS2022/bin/Release/net480/WinUI3XamlPrevieVS2022.vsix'
publish-manifest-file: './extension/WinUI3XamlPrevieVS2022/vs-publish.json'
personal-access-code: ${{ secrets.VS_MARKETPLACE_API_KEY }}