Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/sync-icons.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ name: Sync icons

on:
workflow_dispatch:
inputs:
full_sync:
description: 'Re-download existing icon SVGs'
type: boolean
default: false

jobs:
sync-icons:
Expand Down Expand Up @@ -40,7 +45,7 @@ jobs:
run: pnpm install

- name: Sync Icons
run: pnpm nx run @launchpad-ui/icons:sync
run: pnpm nx run @launchpad-ui/icons:${{ inputs.full_sync && 'sync:full' || 'sync' }}

- name: Connect Icons
run: pnpm nx run @launchpad-ui/icons:connect
Expand Down
Loading