aboutsummaryrefslogtreecommitdiff
path: root/.github/actions/tasks/main.yml
blob: 06857e33880a0ca2ddb5dec3b3c9665c645ecf5a (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 ${{ inputs.task-path }}
      shell: bash