We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ba7805 commit 48be759Copy full SHA for 48be759
.github/main.workflow
@@ -4,19 +4,25 @@ workflow "Deploy to GitHub Pages" {
4
}
5
6
action "Filter branch" {
7
- uses = "actions/bin/filter@master"
+ uses = "actions/bin/filter/@master"
8
args = "branch master"
9
10
11
-action "Update version" {
+action "Install" {
12
needs = ["Filter branch"]
13
+ uses = "actions/npm@master"
14
+ args = "install --prefix ./website"
15
+}
16
+
17
+action "Update version" {
18
+ needs = ["Install"]
19
uses = "clay/docusaurus-github-action@master"
- args="version"
20
+ args = "version"
21
22
23
action "Build and push docs" {
24
needs = ["Update version"]
25
- args="deploy"
26
+ args = "deploy"
27
secrets = ["DEPLOY_SSH_KEY", "ALGOLIA_API_KEY"]
28
0 commit comments