From a0188a824b7eda70a2163b888654e28876d65bcb Mon Sep 17 00:00:00 2001 From: Mauro Balades Date: Thu, 15 Aug 2024 20:42:45 +0200 Subject: [PATCH] chore: Update create-theme workflow to capture error logs --- .github/workflows/create-theme.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/create-theme.yml b/.github/workflows/create-theme.yml index 8306563f..7fda6255 100644 --- a/.github/workflows/create-theme.yml +++ b/.github/workflows/create-theme.yml @@ -50,14 +50,14 @@ jobs: - name: Create theme content run: | - export CREATION_OUTPUT=$(\ - python3 scripts/create-theme.py \ + python3 scripts/submit-theme.py \ --name "${THEME_NAME}" \ --description "${THEME_DESCRIPTION}" \ --homepage "${THEME_HOMEPAGE}" \ --styles "${THEME_STYLES}" \ --readme "${THEME_README}" \ - --author "${THEME_AUTHOR}") + --author "${THEME_AUTHOR}" 2> error.log + export CREATION_OUTPUT=$(cat error.log) - name: Show error message if: failure()