Skip to content

Commit

Permalink
docs: rename build action to remove ambiguity with other examples
Browse files Browse the repository at this point in the history
  • Loading branch information
byCedric authored Apr 14, 2019
1 parent fe96c9d commit 92beb0f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@ Instead of listening to push events, it's scheduled to run every day at 08:00.
> That's why `secrets = [...]` is omitted here.
```hcl
workflow "Install, Test and Build Web" {
workflow "Install, Test and Build for Web" {
on = "schedule(0 8 * * *)"
resolves = ["Publish"]
resolves = ["Build"]
}
action "Install" {
Expand All @@ -132,7 +132,7 @@ action "Test" {
args = "test"
}
action "Publish" {
action "Build" {
needs = "Test"
uses = "expo/[email protected]"
args = "build:web"
Expand Down

0 comments on commit 92beb0f

Please sign in to comment.