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

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