File tree Expand file tree Collapse file tree 2 files changed +30
-2
lines changed
Expand file tree Collapse file tree 2 files changed +30
-2
lines changed Original file line number Diff line number Diff line change 1+ name : Deploy Website
2+
3+ on :
4+ push :
5+ branches : [master]
6+ paths :
7+ - ' website/**'
8+
9+ jobs :
10+ deploy :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v4
14+ - uses : actions/setup-node@v4
15+ with :
16+ node-version : 22
17+ cache : npm
18+ cache-dependency-path : website/package-lock.json
19+ - run : npm ci
20+ working-directory : website
21+ - run : npm run build
22+ working-directory : website
23+ - uses : cloudflare/wrangler-action@v3
24+ with :
25+ apiToken : ${{ secrets.CLOUDFLARE_API_TOKEN }}
26+ accountId : ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
27+ command : pages deploy dist --project-name=openbotkit --branch=master
28+ workingDirectory : website
Original file line number Diff line number Diff line change @@ -38,10 +38,10 @@ import Terminal from './Terminal.astro';
3838
3939 <div class =" mt-16 border-t border-border pt-12" >
4040 <h2 class =" text-[1.4rem] font-semibold leading-[1.7] tracking-[0.02em] text-heading" >
41- Support the project
41+ Support the research
4242 </h2 >
4343 <p class =" mt-4 text-[1.25rem] leading-[1.7] text-paragraph" >
44- If you find OpenBotKit useful, the easiest way to support it is to
44+ If you find OpenBotKit useful, the easiest way to support this research is to
4545 <a
4646 href =" https://github.com/priyanshujain/openbotkit"
4747 target =" _blank"
You can’t perform that action at this time.
0 commit comments