You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/dev-notes/README.md
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -47,11 +47,15 @@
47
47
The steps below show how to run the Docker container action against a set of test data provided by the repo. However you can follow the same steps and provide any data you wish to test.
48
48
49
49
1) Clone the repo and browse to the repo's directory.
50
-
2) Run `docker build -t mlc-log-parser .`
51
-
3) Run the docker container and pass at least the required inputs by executing:
50
+
2) Create an empty file named `github-step-output.txt` that will store the output of the action. This will only contain the output of the action when the `output` actions's input parameter of the action is set to `step-json` or `step-md`. To create an empty file you can do something like `echo $null >> github-step-output.txt`.
51
+
3) Run `docker build -t mlc-log-parser .`
52
+
4) Run the docker container and pass at least the required inputs by executing:
52
53
53
54
```
54
-
docker run --rm -v ${pwd}:/workspace --workdir /workspace mlc-log-parser `
55
+
docker run --rm --env GITHUB_OUTPUT=/workspace/github-step-output.txt `
0 commit comments