mirror of
https://github.com/zen-browser/theme-store.git
synced 2025-07-08 01:10:01 +02:00
chore: Update create-theme workflow to use CSS rendering for theme styles
This commit is contained in:
parent
8d52ad1c1b
commit
94bc791d1e
2 changed files with 7 additions and 7 deletions
2
.github/ISSUE_TEMPLATE/create-theme.yml
vendored
2
.github/ISSUE_TEMPLATE/create-theme.yml
vendored
|
@ -31,7 +31,7 @@ body:
|
||||||
id: styles
|
id: styles
|
||||||
attributes:
|
attributes:
|
||||||
label: Theme Styles
|
label: Theme Styles
|
||||||
render: markdown
|
render: css
|
||||||
description: The CSS styles for the theme.
|
description: The CSS styles for the theme.
|
||||||
placeholder: |
|
placeholder: |
|
||||||
body {
|
body {
|
||||||
|
|
12
.github/workflows/create-theme.yml
vendored
12
.github/workflows/create-theme.yml
vendored
|
@ -32,12 +32,12 @@ jobs:
|
||||||
- name: Export parsed payload into variables
|
- name: Export parsed payload into variables
|
||||||
id: export
|
id: export
|
||||||
run: |
|
run: |
|
||||||
echo 'THEME_NAME="${{ fromJson(steps.parse.outputs.payload)['Name'] }}"' >> $GITHUB_ENV
|
echo 'THEME_NAME=\'${{ fromJson(steps.parse.outputs.payload)['Name'] }}\'' >> $GITHUB_ENV
|
||||||
echo 'THEME_DESCRIPTION="${{ fromJson(steps.parse.outputs.payload)['Description'] }}"' >> $GITHUB_ENV
|
echo 'THEME_DESCRIPTION=\'${{ fromJson(steps.parse.outputs.payload)['Description'] }}\'' >> $GITHUB_ENV
|
||||||
echo 'THEME_HOMEPAGE="${{ fromJson(steps.parse.outputs.payload)['Homepage'] }}"' >> $GITHUB_ENV
|
echo 'THEME_HOMEPAGE=\'${{ fromJson(steps.parse.outputs.payload)['Homepage'] }}\'' >> $GITHUB_ENV
|
||||||
echo 'THEME_STYLES="${{ fromJson(steps.parse.outputs.payload)['Theme Styles'] }}"' >> $GITHUB_ENV
|
echo 'THEME_STYLES=\'${{ fromJson(steps.parse.outputs.payload)['Theme Styles'] }}\'' >> $GITHUB_ENV
|
||||||
echo 'THEME_README="${{ fromJson(steps.parse.outputs.payload)['Readme'] }}"' >> $GITHUB_ENV
|
echo 'THEME_README=\'${{ fromJson(steps.parse.outputs.payload)['Readme'] }}\'' >> $GITHUB_ENV
|
||||||
echo 'THEME_AUTHOR="${{ github.actor }}' >> $GITHUB_ENV
|
echo 'THEME_AUTHOR=\'${{ github.actor }}' >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Setup Git
|
- name: Setup Git
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue