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 use environment variables for theme creation
This commit is contained in:
parent
a1770acbc0
commit
8d52ad1c1b
1 changed files with 6 additions and 6 deletions
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