mirror of
https://github.com/zen-browser/theme-store.git
synced 2025-07-07 17:05:31 +02:00
chore: Update create-theme workflow to capture error logs
This commit is contained in:
parent
936af41f9f
commit
a0188a824b
1 changed files with 3 additions and 3 deletions
6
.github/workflows/create-theme.yml
vendored
6
.github/workflows/create-theme.yml
vendored
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue