diff options
| -rw-r--r-- | .github/actions/tasks/main.yml | 16 | ||||
| -rw-r--r-- | .github/workflows/hst_rt.yml | 12 |
2 files changed, 28 insertions, 0 deletions
diff --git a/.github/actions/tasks/main.yml b/.github/actions/tasks/main.yml new file mode 100644 index 0000000..06857e3 --- /dev/null +++ b/.github/actions/tasks/main.yml @@ -0,0 +1,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 + diff --git a/.github/workflows/hst_rt.yml b/.github/workflows/hst_rt.yml new file mode 100644 index 0000000..8fff34a --- /dev/null +++ b/.github/workflows/hst_rt.yml @@ -0,0 +1,12 @@ +on: + workflow-dispatch: + +jobs: + rt: + runs-on: ubuntu-latest + name: RT HST + steps: + - uses: actions/checkout@v5 + - uses: ./.github/actions/tasks + with: + task-path: hst/rt |
