From 6689d765bf69e0b79e9352e11203caf4acd1d25c Mon Sep 17 00:00:00 2001 From: Ethan Apodaca Date: Tue, 21 Mar 2023 20:40:53 -0700 Subject: [PATCH] create readme --- README.md | 17 +++++++++++++++++ action.yml | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..899e1a2 --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# Usage + +Use like this: + +```yml +name: build +run-name: build images +on: [push] +jobs: + local-registry: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Install docker + uses: papodaca/install-docker-action@main +``` \ No newline at end of file diff --git a/action.yml b/action.yml index 388c7fa..c3cf4d1 100644 --- a/action.yml +++ b/action.yml @@ -1,7 +1,7 @@ name: Install Docker description: Install Docker on debian or ubuntu runs: - using: "composite" + using: composite steps: - shell: bash run: |