Fixed #392 : Added an option to disable SSH key decryption progress bar #106
Workflow file for this run
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
name: Build PLGX | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- run: nuget restore | |
- name: Setup MSBuild.exe | |
uses: microsoft/[email protected] | |
- 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 | |
with: | |
name: KeeAgent.plgx | |
path: KeeAgent/bin/ReleasePlgx/KeeAgent.plgx |