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...
+
+ +
+ +
+ + + + + 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