summaryrefslogtreecommitdiffstats
path: root/pkg/runner/testdata/path-handling/action.yml
blob: 8db98c52abe49154d837959bffb25eec7e224ca4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: output action
description: output action

inputs:
  input:
    description: some input
    required: false

outputs:
  job-output:
    description: some output
    value: ${{ steps.gen-out.outputs.step-output }}

runs:
  using: composite
  steps:
    - name: run step
      id: gen-out
      run: |
        echo "::set-output name=step-output::"
      shell: bash