diff --git a/README.md b/README.md index f88758f..1d6bf3c 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,13 @@ The Krane Github Action allows you to automate deployments using [Krane](https:/ Typically in your pipelines you'll have a _build image_ step and a _push image_ step. The last step ideally _auto-deploying_ your apps in that same pipeline. ```yml -uses: krane/action@master -with: - url: ${{ secrets.KRANE_URL }} - token: ${{ secrets.KRANE_TOKEN }} - file: ./deployment.json +steps: + - uses: actions/checkout@v2 + - uses: krane/action@master + with: + url: ${{ secrets.KRANE_URL }} + token: ${{ secrets.KRANE_TOKEN }} + file: ./deployment.json ``` | Input | Description | Required | @@ -52,8 +54,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - with: - repository: my-github-repo - uses: krane/action@master with: url: ${{ secrets.KRANE_URL }} diff --git a/package.json b/package.json index 9baca8e..3298dba 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,5 @@ { "name": "action", - "version": "1.0.2", "description": "The Krane github action", "author": "David Castaneda", "main": "lib/index.js",