-
Notifications
You must be signed in to change notification settings - Fork 24
45 lines (33 loc) · 971 Bytes
/
CI_build.yml
File metadata and controls
45 lines (33 loc) · 971 Bytes
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_build
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Install swissfileknife
run: |
choco install swissfileknife
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v3
- name: Build plugin dlls
working-directory: .\NppExec
run: |
msbuild NppExec_VC2022.sln /m /p:configuration="Release" /p:platform="Win32"
msbuild NppExec_VC2022.sln /m /p:configuration="Release" /p:platform="x64"
- name: Build plugin chm help
working-directory: .
shell: cmd
run: |
NppExec_Manual_chm_build.bat
- name: create zip packages
working-directory: .
shell: cmd
run: |
NppExec_zip_src_dll.bat
- name: Archive artifacts
uses: actions/upload-artifact@v7
with:
name: nppexec zips
path: NppExec*.zip