feat(ecommerce): release Ari Shopping Frontend v2
Build and Push Frontend / build (push) Successful in 1m57s

This commit is contained in:
2026-07-18 16:34:01 -05:00
parent 9f25b17468
commit 54d2f208ae
25 changed files with 376 additions and 566 deletions
+22
View File
@@ -0,0 +1,22 @@
name: Sync Ari Shopping Catalog
on:
workflow_dispatch:
schedule:
- cron: '@daily'
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: python3 -m pip install --user -r workloads/ecommerce/tools/requirements.txt
- run: python3 workloads/ecommerce/tools/catalog_sync.py --source workloads/ecommerce/catalog-source.csv --download-images
- run: |
git config user.name "Ari Shopping Catalog Bot"
git config user.email "[email protected]"
git add workloads/ecommerce/data/products.json workloads/ecommerce/assets/img/products
git diff --cached --quiet && exit 0
git commit -m "chore(catalog): sync products"
git pull --rebase origin main
git push origin HEAD:main