Debugging Actions

This commit is contained in:
Micheal Colhoun 2021-09-05 11:40:50 +01:00
parent 21e7c04840
commit e9e25a3874

View File

@ -18,28 +18,28 @@ jobs:
runs-on: windows-latest runs-on: windows-latest
steps: steps:
- uses: actions/checkout@v2 #- uses: actions/checkout@v2
- name: Setup NuGet #- name: Setup NuGet
uses: NuGet/setup-nuget@v1.0.5 # uses: NuGet/setup-nuget@v1.0.5
- name: Restore dependencies #- name: Restore dependencies
run: nuget restore ${SOLUTION} # run: nuget restore ${SOLUTION}
- name: Setup .NET #- name: Setup .NET
uses: actions/setup-dotnet@v1 # uses: actions/setup-dotnet@v1
with: # with:
dotnet-version: 5.0.x # dotnet-version: 5.0.x
- name: Build #- name: Build
run: dotnet build DarkUI.sln --configuration Release # run: dotnet build DarkUI.sln --configuration Release
- name: Debuging Script - name: Debuging Script
run: | run: |
echo Home: $HOME echo Home: $HOME
echo ITHUB_REPOSITORY: $GITHUB_REPOSITORY echo ITHUB_REPOSITORY: {{$GITHUB_REPOSITORY
echo SOLUTION: $SOLUTION echo SOLUTION: {{env.SOLUTION}}
echo BUILD_CONFIG: $BUILD_CONFIG echo BUILD_CONFIG: {{env.$BUILD_CONFIG}}
- name: Build Config #- name: Build Config
run: dotnet build $SOLUTION --configuration $BUILD_CONFIG --no-restore # run: dotnet build $SOLUTION --configuration $BUILD_CONFIG --no-restore