Skip to content

Commit eb4d164

Browse files
committed
display vars
1 parent 5cc9fcf commit eb4d164

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/dotnet.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,12 @@ jobs:
5252
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
5353

5454
- name: Display dotnet version
55-
run: dotnet --version
55+
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"
5661
5762
- name: Restore
5863
run: dotnet restore

0 commit comments

Comments
 (0)