-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: rename build action to remove ambiguity with other examples
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" { | ||
|
@@ -132,7 +132,7 @@ action "Test" { | |
args = "test" | ||
} | ||
action "Publish" { | ||
action "Build" { | ||
needs = "Test" | ||
uses = "expo/[email protected]" | ||
args = "build:web" | ||
|