-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
40 lines (40 loc) · 845 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# action.yml
name: 'Run tool4d!'
author: 'Eric Marchand'
branding:
icon: 'terminal'
color: 'blue'
description: 'Run test'
inputs:
param1:
description: 'user parameters'
required: false
param2:
description: 'user parameters'
required: false
param3:
description: 'user parameters'
required: false
runs:
using: 'composite'
steps:
- id: run1
name: 🚀 Run 1
shell: bash
run: |
echo '${{ inputs.param1 }}'
jq -e . <<<'${{ inputs.param1 }}'
- id: run2
name: 🚀 Run 2
if: always()
shell: bash
run: |
echo '${{ inputs.param2 }}'
jq -e . <<<'${{ inputs.param2 }}'
- id: run3
name: 🚀 Run 23
if: always()
shell: bash
run: |
echo '${{ inputs.param3 }}'
jq -e . <<<'${{ inputs.param3 }}'