Skip to content
Merged
Show file tree
Hide file tree
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
15 changes: 13 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ on:
branches: [ "main" ]
pull_request:
branches: [ "main", "dev-*" ]
workflow_dispatch:
inputs:
job:
description: 'Select job to run'
required: true
default: 'main_snapshot_baseline'
type: choice
options:
- main_snapshot_baseline
# schedule:
# - cron: '0 0 * * *' # Nightly run at midnight UTC

Expand Down Expand Up @@ -71,11 +80,13 @@ jobs:
# STAGE B: Main Branch Baseline
# ------------------------------------------------------------------------
# Focus: Generate Goldens for record (No Diff Verification)
# Trigger: Push to Main
# Trigger: Push to Main, or Manual Dispatch
# ========================================================================
main_snapshot_baseline:
name: 📸 Generate Baseline Snapshots (Main)
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
if: |
(github.event_name == 'push' && github.ref == 'refs/heads/main') ||
(github.event_name == 'workflow_dispatch' && github.event.inputs.job == 'main_snapshot_baseline')
# Note: If pixel-perfect consistency with local Mac dev is required,
# change this to 'macos-latest'. Keeping ubuntu-latest for cost efficiency.
runs-on: ubuntu-latest
Expand Down
Binary file added assets/brand/brand_img_sup_tb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/brand/brand_logo_tb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions assets/brand/meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"brand_settings": {
"brand_logo": {
"default": {
"url": "assets/brand/brand_logo.webp"
},
"dark": {
"url": "assets/brand/brand_logo_dark.webp"
},
"alt_text": "Main Brand Logo",
"width": 144,
"height": 144
},
"brand_img_sup": {
"default": {
"url": "assets/brand/brand_img_sup.webp"
},
"dark": {
"url": "assets/brand/brand_img_sup_dark.webp"
},
"alt_text": "Support Page Image",
"width": 144,
"height": 144
}
}
}
Loading