24 lines
712 B
YAML
24 lines
712 B
YAML
name: Net Diag
|
|
on: push
|
|
|
|
jobs:
|
|
diag:
|
|
runs-on: windows-latest
|
|
timeout-minutes: 10
|
|
env:
|
|
CI: 'true'
|
|
steps:
|
|
- name: Env dump
|
|
run: |
|
|
"CI=$env:CI"
|
|
"GITHUB_ACTIONS=$env:GITHUB_ACTIONS"
|
|
"GITEA_ACTIONS=$env:GITEA_ACTIONS"
|
|
"GITHUB_SERVER_URL=$env:GITHUB_SERVER_URL"
|
|
"GITHUB_RUN_ID=$env:GITHUB_RUN_ID"
|
|
"RUNNER_OS=$env:RUNNER_OS"
|
|
"RUNNER_TEMP=$env:RUNNER_TEMP"
|
|
"RUNNER_ENVIRONMENT=$env:RUNNER_ENVIRONMENT"
|
|
"RUNNER_NAME=$env:RUNNER_NAME"
|
|
Get-ChildItem env: | Where-Object { $_.Name -match '^(GITHUB|GITEA|RUNNER|ACTIONS)' } | ForEach-Object { "$($_.Name)=$($_.Value)" }
|
|
exit 0
|