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 d86b717 commit 49880b5Copy full SHA for 49880b5
.github/main.workflow
@@ -8,23 +8,23 @@ action "Filters for GitHub Actions" {
8
args = "branch master"
9
}
10
11
- action "Yarn install" {
12
- uses = "borales/actions-yarn@master"
+action "Yarn install" {
13
needs = ["Filters for GitHub Actions"]
+ uses = "borales/actions-yarn@master"
14
args = "install"
15
16
17
- action "Yarn build" {
18
+action "Yarn build" {
19
needs = ["Yarn install"]
20
args = "docs:build"
21
22
23
action "Deploy" {
24
- uses = "maxheld83/ghpages@v0.2.1"
25
needs = ["Yarn build"]
+ uses = "maxheld83/ghpages@v0.2.1"
26
env = {
27
- BUILD_DIR = "dist/"
+ BUILD_DIR = "docs/.vuepress/dist/"
28
29
secrets = ["GH_PAT"]
30
0 commit comments