Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:

# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
45 changes: 45 additions & 0 deletions .github/workflows/CI_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
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@v2

- 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@v6
with:
name: nppexec zips
path: NppExec*.zip