We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 926a707 commit 3bb80ceCopy full SHA for 3bb80ce
.github/workflows/static.yml
@@ -10,6 +10,11 @@ permissions:
10
jobs:
11
build_and_deploy:
12
runs-on: ubuntu-latest
13
+
14
+ defaults:
15
+ run:
16
+ working-directory: htmltoolkit
17
18
steps:
19
- name: Checkout repo
20
uses: actions/checkout@v4
@@ -20,13 +25,13 @@ jobs:
25
node-version: 20
21
26
22
27
- name: Install dependencies
23
- run: cd htmltoolkit && npm ci
28
+ run: npm ci
24
29
30
- name: Build the site
31
run: npm run build
32
33
- name: Deploy to GitHub Pages
34
uses: JamesIves/github-pages-deploy-action@v4
35
with:
- branch: gh-pages # target branch
- folder: build # output folder from `adapter-static`
36
+ branch: gh-pages # Target branch
37
+ folder: htmltoolkit/build # Path from root to built site
0 commit comments