From 9f464f87aff257f9f87643063e1dd18a098bdd02 Mon Sep 17 00:00:00 2001 From: frankpereira1-web Date: Sat, 21 Mar 2026 10:49:06 -0700 Subject: [PATCH] Update publish-immutable-actions.yml --- .../workflows/publish-immutable-actions.yml | 282 +++++++++++++++++- 1 file changed, 281 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-immutable-actions.yml b/.github/workflows/publish-immutable-actions.yml index 87c0207..60ee1c7 100644 --- a/.github/workflows/publish-immutable-actions.yml +++ b/.github/workflows/publish-immutable-actions.yml @@ -1,4 +1,258 @@ -name: 'Publish Immutable Action Version' +name: 'Publish Immutable Action Version'upload-artifact/ +├── index.html ← the whole dashboard, everything inside +└── .github/ + └── workflows/ + └── ci.yml ← the deploy helper +cd upload-artifact +git add . +git commit -m "Dashboard live" +git push origin main + + + + + + +Frank's Daily Intel + + + + + +
+
+ +
+ +
+
+ + + +
+ +
+
🙏 Daily Gratitude & Morning Motivation
+
● Loading your morning briefing...
+
+ +
+
📈 S&P 500 · Dow Jones · Nasdaq · Fed Rate
+
● Loading...
+
+ +
+
🏕 Gold & Silver Spot Prices
+
● Loading...
+
+ +
+
⚡ Energy — WTI Oil · Brent · Natural Gas
+
● Loading...
+
+ +
+
🌿 Grains — Wheat · Corn · Soybeans
+
● Loading...
+
+ +
+
🌿 Cannabis Market — Wholesale & Retail · Indoor · Greenhouse · Outdoor · California Index
+
● Loading...
+
+ +
+
🏠 California Real Estate — Madera · Central Valley · LA · Statewide
+
● Loading...
+
+ +
+
🏢 Multifamily Acquisition Watch — 15–50 Units · Greater LA · Owner Carry · Turnkey · 90%+ Occupancy
+
● Loading...
+
+ +
+
📊 Annual Review — YoY Commodities · Markets · Real Estate · Patterns
+
● Loading...
+
+ +
+
⚖ CA Law · Politics · Landlord Updates
+
● Loading...
+
+ +
+
🔐 Daily Security & Privacy Check
+
● Loading...
+
+ +
+
+ Frank Pereira  ·  Madera, CA  ·  frankpereira1@icloud.com
+ Emerald Valley Wellness · Universal Guiding Light Orthodox Temple
+ Not yet refreshed — press Refresh All Sections above +
+
+ + + + + on: release: @@ -18,3 +272,29 @@ jobs: - name: Publish id: publish uses: actions/publish-immutable-action@0.0.3 +name: Deploy to GitHub Pages +on: + push: + branches: [main] + workflow_dispatch: +permissions: + contents: read + pages: write + id-token: write +concurrency: + group: pages + cancel-in-progress: false +jobs: + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/configure-pages@v5 + - uses: actions/upload-pages-artifact@v3 + with: + path: '.' + - id: deployment + uses: actions/deploy-pages@v4