-
Notifications
You must be signed in to change notification settings - Fork 5
44 lines (33 loc) · 916 Bytes
/
ci.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
38
39
40
41
42
43
44
name: CI
on:
pull_request:
push:
workflow_dispatch:
inputs:
is_build:
description: 'Need to Build?'
required: true
type: boolean
jobs:
check:
runs-on: windows-latest
steps:
- name: Check Out
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Build LocalizerScript
run: |
cd .\Scripts
dotnet build
- name: Run LocalizerScript
run: |
cd .\Scripts\bin\Debug\net8.0
.\LocalizerScript.exe "${{github.workspace}}/Views" "${{github.workspace}}/Strings"
- name: Upload .msixupload to artifacts
uses: actions/upload-artifact@v4
with:
name: Strings
path: "${{github.workspace}}/Strings"