-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
KeePass now recommends distributing plugins as dll rather than plgx
- Loading branch information
Showing
3 changed files
with
44 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Build PLGX | ||
name: Build DLL/PLGX | ||
|
||
on: [push, pull_request] | ||
|
||
|
@@ -17,14 +17,21 @@ jobs: | |
- name: Setup MSBuild.exe | ||
uses: microsoft/[email protected] | ||
|
||
- name: Build DLL | ||
run: msbuild /property:Configuration=ReleaseDll /t:build KeeAgent.sln | ||
|
||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: KeeAgent.dll | ||
path: KeeAgent/bin/ReleaseDll/KeeAgent.dll | ||
|
||
- name: Build PLGX | ||
run: msbuild /property:Configuration=ReleasePlgx /t:build KeeAgent.sln | ||
|
||
- name: List PLGX | ||
run: ~\.nuget\packages\plgxtool\1.0.3\tools\PlgxTool.exe -l .\KeeAgent\bin\ReleasePlgx\KeeAgent.plgx | ||
|
||
- name: Upload artifact | ||
uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: KeeAgent.plgx | ||
path: KeeAgent/bin/ReleasePlgx/KeeAgent.plgx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters