All checks were successful
Deploy / Deploy to Production (push) Successful in 6s
Implement complete SEO setup for virtual product pages with: - Meta tags (title, description, canonical, hreflang) - Open Graph protocol for social sharing - Twitter Card tags - Schema.org structured data (JSON-LD) for products - XML sitemap including virtual pages - Dynamic meta tag updates via JavaScript Changes: - Create SEO snippet with all meta tags - Add structured data snippet for products - Generate sitemap.xml with products and hreflang - Update meta tags dynamically when Shopify data loads - Remove noindex/nofollow (was blocking all indexing) - Add product-specific OG tags (price, availability) All pages now properly indexed with correct multilingual setup. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
34 lines
1.1 KiB
YAML
34 lines
1.1 KiB
YAML
name: Deploy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
deploy:
|
|
name: Deploy to Production
|
|
runs-on: docker
|
|
steps:
|
|
- name: Checkout code
|
|
run: |
|
|
git clone --depth 1 --branch main https://forge.studio-variable.com/${{ github.repository }}.git .
|
|
ls -la
|
|
|
|
- name: Deploy via FTP
|
|
env:
|
|
USERNAME: ${{ secrets.USERNAME }}
|
|
PASSWORD: ${{ secrets.PASSWORD }}
|
|
PRODUCTION_HOST: ${{ secrets.PRODUCTION_HOST }}
|
|
run: |
|
|
apt-get update -qq && apt-get install -y -qq lftp
|
|
cat > /tmp/lftp-script.txt <<SCRIPT
|
|
set ftp:ssl-allow no
|
|
open -u $USERNAME,$PASSWORD $PRODUCTION_HOST
|
|
mirror --reverse --verbose --ignore-time --parallel=10 -x local/ assets assets
|
|
mirror --reverse --verbose --ignore-time --parallel=10 -x accounts/ -x cache/ -x sessions/ site site
|
|
mirror --reverse --verbose --ignore-time --parallel=10 kirby kirby
|
|
mirror --reverse --verbose --ignore-time --parallel=10 vendor vendor
|
|
quit
|
|
SCRIPT
|
|
lftp -f /tmp/lftp-script.txt
|