Skip to content
Open
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
26 changes: 26 additions & 0 deletions .github/workflows/deploy-stock-chart.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Deploy Stock Chart Website

on:
push:
branches: [claude/stock-chart-website-x1iujo, main]
paths:
- 'stock-chart-website/**'
- '.github/workflows/deploy-stock-chart.yml'
workflow_dispatch:

permissions:
contents: write

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: stock-chart-website
branch: gh-pages
clean: true
Loading