Skip to content
This repository was archived by the owner on Mar 27, 2024. It is now read-only.

Commit 7a3297a

Browse files
committed
fixing bug in readme
1 parent f479877 commit 7a3297a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

actions/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ Given an existing container on Docker Hub, we can run container diff
1414
without doing any kind of build.
1515

1616
```
17-
workflow "Run container-diff" {
17+
workflow "Run container-diff isolated" {
1818
on = "push"
1919
resolves = ["list"]
2020
}
2121
2222
action "Run container-diff" {
2323
uses = "GoogleContainerTools/container-diff/actions@master"
24-
args = ["analyze", "vanessa/salad", "--type=pip", "type=apt", "--type=history", --output "/github/workspace/data.json", "--type=file", "--json", "--quiet", "--verbosity=panic" ]
24+
args = ["analyze", "vanessa/salad", "--type=pip", "type=apt", "--type=history", "--output", "/github/workspace/data.json", "--type=file", "--json", "--quiet", "--verbosity=panic" ]
2525
}
2626
2727
action "list" {
@@ -66,7 +66,7 @@ action "push" {
6666
action "Run container-diff" {
6767
uses = "GoogleContainerTools/container-diff/actions@master"
6868
needs = ["build", "login", "push"]
69-
args = ["analyze", "vanessa/salad", "--type=pip", "type=apt", "--type=history", --output "/github/workspace/data.json", "--type=file", "--json", "--quiet", "--verbosity=panic" ]
69+
args = ["analyze", "vanessa/salad", "--type=pip", "type=apt", "--type=history", "--output", "/github/workspace/data.json", "--type=file", "--json", "--quiet", "--verbosity=panic" ]
7070
}
7171
7272
action "list" {

0 commit comments

Comments
 (0)