Skip to content

Commit

Permalink
Re-purpose OpenAI example for Coaching tool
Browse files Browse the repository at this point in the history
  • Loading branch information
kentwills committed Nov 18, 2024
1 parent 6ea4dba commit 50d24c0
Show file tree
Hide file tree
Showing 26 changed files with 6,452 additions and 22,539 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Deploy to GitHub Pages

on:
push:
branches: [main]
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18

- name: Install dependencies
run: npm ci

- name: Build the React app
run: npm run build

- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./build

deploy:
needs: build
runs-on: ubuntu-latest
permissions:
contents: read
pages: write
id-token: write
steps:
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v2

Loading

0 comments on commit 50d24c0

Please sign in to comment.