From 05abc37388e3fe8d4476ade94d2f550f464bc980 Mon Sep 17 00:00:00 2001 From: Leopoldo Araujo <68853890+poloaraujo@users.noreply.github.com> Date: Thu, 15 Jun 2023 14:14:22 +0200 Subject: [PATCH] on-run-end hook correction README.md - Removed backticks and one parenthesis --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9a055e8c..94853de2 100644 --- a/README.md +++ b/README.md @@ -55,15 +55,15 @@ packages: 3. Add an on-run-end hook to your `dbt_project.yml` ```yml - `on-run-end: - - "{{ dbt_artifacts.upload_results(results) }}"` + on-run-end: + - "{{ dbt_artifacts.upload_results(results) }}" ``` We recommend adding a conditional here so that the upload only occurs in your production environment, such as: ```yml on-run-end: - - "{% if target.name == 'prod' %}{{ dbt_artifacts.upload_results(results) }}{% endif %}"`) + - "{% if target.name == 'prod' %}{{ dbt_artifacts.upload_results(results) }}{% endif %}" ``` 4. Run the tables!