Skip to content

Commit

Permalink
Add github pages action
Browse files Browse the repository at this point in the history
  • Loading branch information
rakoo committed Dec 11, 2023
1 parent c68f626 commit 25faed8
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/deploy-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Deploy conversations branch to Github Pages

on:
push:
branches: [ "conversations" ]

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
pages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci && npm run build
- uses: actions/upload-pages-artifact@v2
with:
path: "dist"
- uses: actions/deploy-pages@v3


0 comments on commit 25faed8

Please sign in to comment.