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
14 changes: 10 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
fetch-depth: 0

- name: Package
run: |
tap generate-chm "Documentation/Help/Readme.md" --out "ResultsAndTiming/DemonstrationHelp.chm" --title "TAP Demonstration Plugin Package Help" --startpage "Documentation/Help/Welcome/Readme.md"
run: tap generate-chm "Documentation/Help/Readme.md" --out "DemonstrationHelp.chm" --title "TAP Demonstration Plugin Package Help" --startpage "Documentation/Help/Welcome/Readme.md"

- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: package
name: chm
retention-days: 7
path: "ResultsAndTiming/*.chm"
path: "DemonstrationHelp.chm"

Build:
runs-on: windows-latest
env:
Expand All @@ -44,6 +44,12 @@ jobs:
- name: Build
run: dotnet build -c Release

- name: Download TapPackage Artifact
uses: actions/download-artifact@v4
with:
name: chm
path: bin/Release

- name: Create Package
run: |
cd bin/Release
Expand Down
2 changes: 1 addition & 1 deletion .gitversion
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# This is the version number that will be used. Prerelease numbers are calculated by
# counting git commits since the last change in this value.
version = 9.1.0
version = 9.1.1

# A version is determined to be a "beta" prerelease if it originates from the default branch
# The default branch is the first branch that matches the following regular expession.
Expand Down
3 changes: 0 additions & 3 deletions ResultsAndTiming/OpenTap.Plugins.Demo.ResultsAndTiming.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@
<None Update="Tests\DemonstrationAllSteps.TapPlan">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="DemonstrationHelp.chm">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Tests\Test Bench Profile\Connections.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
Expand Down
Loading