From 87386047ed4d0c6fe486f0f2b346a2cf36d3b26f Mon Sep 17 00:00:00 2001 From: August Kilponen Date: Thu, 12 Dec 2024 13:16:43 +0200 Subject: [PATCH] =?UTF-8?q?OK-749:=20Runko=20DBT-ajon=20k=C3=A4sin=20k?= =?UTF-8?q?=C3=A4ynnist=C3=A4miselle?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/run-dbt-runner-task.yml | 26 +++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/run-dbt-runner-task.yml diff --git a/.github/workflows/run-dbt-runner-task.yml b/.github/workflows/run-dbt-runner-task.yml new file mode 100644 index 0000000..f99a2d1 --- /dev/null +++ b/.github/workflows/run-dbt-runner-task.yml @@ -0,0 +1,26 @@ +name: Run current installed DBT Runner task + +on: + workflow_call: + inputs: + environment: + type: string + required: true + description: 'Environment which to deploy to (testi/tuotanto)' + workflow_dispatch: + inputs: + environment: + type: choice + description: 'Environment which to deploy to' + options: + - testi + - tuotanto + +permissions: + id-token: write + contents: read + +jobs: + deploy: + name: Run current installed DBT Runner task + runs-on: ubuntu-latest