Test .NET CLI on Windows Latest #18
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: Test .NET CLI on Windows Latest | |
on: | |
workflow_dispatch: # This allows you to run the workflow manually from the Actions tab | |
jobs: | |
test-latest-release: | |
runs-on: windows-latest # Uses the latest Windows environment | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Install 7-Zip | |
run: choco install -y 7zip # Install 7-Zip to extract .7z files | |
- name: Extract Release Archive | |
run: | | |
7z x '!release\latest-unstable\LatestCli.7z' -o'release_extracted' # Extract to 'release_extracted' folder | |
- name: List Extracted Files | |
run: dir release_extracted # List files in the directory to confirm the .exe is present | |
- name: Run CLI App Help Command | |
run: | | |
shell: cmd # Explicitly set to CMD | |
"release_extracted\DescribeTranspiler.CLI.exe" -help auto > output.txt | |
if %errorlevel% neq 0 ( | |
echo The command failed with exit code %errorlevel%. Check output.txt for details. | |
) | |
- name: List Output Files | |
run: dir release_extracted # List files to check for output.txt | |
- name: Get CLI App Result | |
run: | | |
if exist output.txt ( | |
type output.txt # Display the contents of output.txt | |
) else ( | |
echo output.txt does not exist. | |
) |