aboutsummaryrefslogtreecommitdiff
path: root/.github/actions/tasks/action.yml
blob: 4302b936c1f98083d76ae0eada2cc595aa5b37e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: 'task'
description: 'Runs tasks'
inputs:
  task-path:
    description: 'Which task to run'
    required: true
    default: ''

runs:
  using: "composite"
  steps:
    - name: Run
      run: |
        bash tasks/task.sh tasks/${{ inputs.task-path }}
      shell: bash