From db7eca3379da54b9160a113e0ba4fbd450455e48 Mon Sep 17 00:00:00 2001 From: Olga Botvinnik Date: Thu, 9 Apr 2020 06:19:43 -0700 Subject: [PATCH] Add complete working example Addresses https://github.com/docker/build-push-action/issues/25 Signed-off-by: Olga Botvinnik --- README.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index de81c4c..4b2b320 100644 --- a/README.md +++ b/README.md @@ -192,4 +192,24 @@ with: repository: myorg/myrepository tag_with_ref: true target: mytarget -``` \ No newline at end of file +``` + +### Minimal complete working github actions yaml file + +```yaml +name: Build Docker images +on: [push, pull_request] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: 'Checkout git repo' + uses: actions/checkout@v1 + + - name: Build Docker images + uses: docker/build-push-action@v1.0.1 + with: + repository: myorg/myrepository + push: false +```