From 906f91f8eed5e91a7afae95c7002a3e4553d6aae Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu, 13 Jul 2023 07:19:35 +0000
Subject: [PATCH] base path refactor, more docs
---
.github/workflows/deploy.yaml | 15 ++++++---------
1 files changed, 6 insertions(+), 9 deletions(-)
diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml
index f2c1097..6c9adda 100644
--- a/.github/workflows/deploy.yaml
+++ b/.github/workflows/deploy.yaml
@@ -3,7 +3,7 @@
on:
push:
branches:
- - v4-alpha
+ - v4-alpha # TODO: update
jobs:
deploy:
@@ -18,7 +18,7 @@
- name: Setup Node
uses: actions/setup-node@v3
with:
- node-version: '18'
+ node-version: 18
- name: Cache dependencies
uses: actions/cache@v3
@@ -30,11 +30,8 @@
- run: npm ci
- - name: Build Quartz
- run: npx quartx build
+ - name: Test
+ run: npm test
- - name: Deploy
- uses: peaceiris/actions-gh-pages@v3
- with:
- github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: ./public
+ - name: Ensure Quartz builds
+ run: npx quartz build
--
Gitblit v1.10.0