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
1 change: 1 addition & 0 deletions .github/workflows/LabVIEW Project Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,6 @@ jobs:
- name: Run lvCICD Test cases with VITester
uses: NEVSTOP-LAB/lvCICD@main
with:
LabVIEW_Version: 2017
Operation: StartVITester
Parameter1: ${{ github.workspace }}\LabVIEW-Adapter\CICD-LabVIEW-Adapter.lvproj
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,5 +106,5 @@ runs:
$Parameter9 `
$Parameter10 ;
$Result=Get-Content -Path "${{ github.action_path }}\output.txt";
Write-Host "::set-output name=Result::$Result"
echo "Result=$Result" >> $env:GITHUB_OUTPUT
shell: powershell
2 changes: 1 addition & 1 deletion docs/examples/Build_VIPM_Library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- id: vip-name
run:
$vipName=Split-Path -Path ${{ steps.build-vip.outputs.Result }} -Leaf;
Write-Host "::set-output name=vipName::"$vipName""
echo "vipName=$vipName" >> $env:GITHUB_OUTPUT
shell: powershell

- name: Upload a Build Artifact
Expand Down
Loading