ci: add generation of metadata file to approved workflows

This commit is contained in:
Meier Lukas 2025-02-15 17:53:56 +01:00
parent 6275902637
commit 93b199b212
No known key found for this signature in database
GPG Key ID: DCAB7307AEA5DF44
2 changed files with 4 additions and 0 deletions

View File

@ -51,6 +51,8 @@ jobs:
run: python scripts/generate_file_tree.py svg png webp run: python scripts/generate_file_tree.py svg png webp
- name: Generate ICONS.md - name: Generate ICONS.md
run: python scripts/generate_icons_page.py run: python scripts/generate_icons_page.py
- name: Generate full metadata file
run: python scripts/generate_metadata.py
- name: Extract icon name - name: Extract icon name
id: extract_icon_name id: extract_icon_name
run: echo "ICON_NAME=$(python scripts/print_icon_name.py ${{ env.ICON_TYPE }} addition)" >> "$GITHUB_OUTPUT" run: echo "ICON_NAME=$(python scripts/print_icon_name.py ${{ env.ICON_TYPE }} addition)" >> "$GITHUB_OUTPUT"

View File

@ -51,6 +51,8 @@ jobs:
run: python scripts/generate_file_tree.py svg png webp run: python scripts/generate_file_tree.py svg png webp
- name: Generate ICONS.md - name: Generate ICONS.md
run: python scripts/generate_icons_page.py run: python scripts/generate_icons_page.py
- name: Generate full metadata file
run: python scripts/generate_metadata.py
- name: Extract icon name - name: Extract icon name
id: extract_icon_name id: extract_icon_name
run: echo "ICON_NAME=$(python scripts/print_icon_name.py ${{ env.ICON_TYPE }} update)" >> "$GITHUB_OUTPUT" run: echo "ICON_NAME=$(python scripts/print_icon_name.py ${{ env.ICON_TYPE }} update)" >> "$GITHUB_OUTPUT"