We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cc9fcf commit eb4d164Copy full SHA for eb4d164
.github/workflows/dotnet.yml
@@ -52,7 +52,12 @@ jobs:
52
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
53
54
- name: Display dotnet version
55
- run: dotnet --version
+ run: |
56
+ dotnet --version
57
+ echo "GITHUB_WORKSPACE $GITHUB_WORKSPACE"
58
+ echo "GITHUB_ACTION $GITHUB_ACTION"
59
+ echo "GITHUB_RUN_ID $GITHUB_RUN_ID"
60
+ echo "GITHUB_RUN_NUMBER $GITHUB_RUN_NUMBER"
61
62
- name: Restore
63
run: dotnet restore
0 commit comments