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 0e9c90c commit 4c903e6Copy full SHA for 4c903e6
.github/workflows/ci.yml
@@ -9,8 +9,13 @@ jobs:
9
- name: Checkout
10
uses: actions/checkout@v3
11
- name: Read a json file
12
- uses: ./
+ uses: ./
13
id: read
14
with:
15
input-file: 'package.json'
16
input-property: 'author.name' # Exp: 'fiddlermikey'
17
+ - name: read the variable
18
+ id: write
19
+ run: echo "The value for ${{ steps.read.outputs.output-property }} is ${{ steps.read.outputs.output-value }}"
20
+
21
0 commit comments