Files
Christopher Schleiden 2a3d63551f Rename folders
2023-02-22 15:52:40 -08:00

48 lines
812 B
YAML

include-source: false # Drop file/line/col from output
---
on: push
jobs:
build:
runs-on: ubuntu-latest
outputs:
environment: ${{ steps.a }}
steps:
- id: a
run: echo hi
---
{
"jobs": [
{
"type": "job",
"id": "build",
"name": "build",
"if": {
"type": 3,
"expr": "success()"
},
"runs-on": "ubuntu-latest",
"outputs": {
"type": 2,
"map": [
{
"Key": "environment",
"Value": {
"type": 3,
"expr": "steps.a"
}
}
]
},
"steps": [
{
"id": "a",
"if": {
"type": 3,
"expr": "success()"
},
"run": "echo hi"
}
]
}
]
}