Skip to content

Commit

Permalink
feat: added website deploy to github pages
Browse files Browse the repository at this point in the history
  • Loading branch information
calebjclark committed Jan 10, 2024
1 parent 49389ac commit 58452c5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,22 @@ jobs:
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
submodules: 'true'

- name: Create Node Environment
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install Packages and Build Application
cache: 'yarn'

- name: Install Packages and Build Website
run: |
cd website
npm install -g @vue/cli yarn
yarn install
yarn build
- name: Deploy
uses: s0/git-publish-subdir-action@develop
env:
Expand Down

0 comments on commit 58452c5

Please sign in to comment.