Skip to content

Commit 92beb0f

Browse files
authored
docs: rename build action to remove ambiguity with other examples
1 parent fe96c9d commit 92beb0f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,9 @@ Instead of listening to push events, it's scheduled to run every day at 08:00.
116116
> That's why `secrets = [...]` is omitted here.
117117
118118
```hcl
119-
workflow "Install, Test and Build Web" {
119+
workflow "Install, Test and Build for Web" {
120120
on = "schedule(0 8 * * *)"
121-
resolves = ["Publish"]
121+
resolves = ["Build"]
122122
}
123123
124124
action "Install" {
@@ -132,7 +132,7 @@ action "Test" {
132132
args = "test"
133133
}
134134
135-
action "Publish" {
135+
action "Build" {
136136
needs = "Test"
137137
uses = "expo/expo-github-action@2.3.0"
138138
args = "build:web"

0 commit comments

Comments
 (0)