Skip to content

Commit

Permalink
moving back to packages and workflow deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredwray committed Feb 10, 2023
1 parent d10c5ef commit 316ae91
Show file tree
Hide file tree
Showing 36 changed files with 43 additions and 1 deletion.
41 changes: 41 additions & 0 deletions .github/workflows/deploy-website.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: deploy-website

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
setup-build-deploy:
name: Deploy Website
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18]

steps:
- name: Checkout
uses: actions/checkout@v3

# Test
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: Install Dependencies
run: yarn

- name: Build Website
run: yarn website:build

- name: Publish to Cloudflare Pages
uses: cloudflare/pages-action@1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: b09b24c345713c704e71dea8bd81f713
projectName: keyv
directory: packages/website/dist
gitHubToken: ${{ secrets.GH_TOKEN }}
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16
18
1 change: 1 addition & 0 deletions website/package.json → packages/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"license": "MIT",
"private": true,
"scripts": {
"test:ci": "echo 'no tests needed'",
"build": "docula build",
"serve": "docula serve"
},
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 316ae91

Please sign in to comment.