Skip to content

Commit 49880b5

Browse files
committed
Fix(deploy): fix BUILD_DIR env variable in github action workflow file
1 parent d86b717 commit 49880b5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/main.workflow

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,23 @@ action "Filters for GitHub Actions" {
88
args = "branch master"
99
}
1010

11-
action "Yarn install" {
12-
uses = "borales/actions-yarn@master"
11+
action "Yarn install" {
1312
needs = ["Filters for GitHub Actions"]
13+
uses = "borales/actions-yarn@master"
1414
args = "install"
1515
}
1616

17-
action "Yarn build" {
18-
uses = "borales/actions-yarn@master"
17+
action "Yarn build" {
1918
needs = ["Yarn install"]
19+
uses = "borales/actions-yarn@master"
2020
args = "docs:build"
2121
}
2222

2323
action "Deploy" {
24-
uses = "maxheld83/ghpages@v0.2.1"
2524
needs = ["Yarn build"]
25+
uses = "maxheld83/ghpages@v0.2.1"
2626
env = {
27-
BUILD_DIR = "dist/"
27+
BUILD_DIR = "docs/.vuepress/dist/"
2828
}
2929
secrets = ["GH_PAT"]
3030
}

0 commit comments

Comments
 (0)