From eff5bf91dd8a70cb2df7b4bdc7574c90ee7caec9 Mon Sep 17 00:00:00 2001 From: Lukasz Gornicki Date: Tue, 31 Mar 2020 12:30:43 +0200 Subject: [PATCH] docs: updated readme with proper version of the action (#5) * docs: updated readme with proper version of the action * chore: use latest validator action in example --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 52a31db40..b94b91e6f 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ In case all defaults are fine for you, just add such step: ``` - name: Generating Markdown from my AsyncAPI document - uses: asyncapi/github-action-for-generator@v0.0.2 + uses: asyncapi/github-action-for-generator@v0.1.0 ``` ### Using all possible inputs @@ -49,7 +49,7 @@ In case you do not want to use defaults, you for example want to use different t ``` - name: Generating HTML from my AsyncAPI document - uses: asyncapi/github-action-for-generator@v0.0.2 + uses: asyncapi/github-action-for-generator@v0.1.0 with: template: '@asyncapi/html-template' #In case of template from npm, because of @ it must be in quotes filepath: docs/api/my-asyncapi.yml @@ -64,7 +64,7 @@ In case you want to have more steps in your workflow after generation and you ne ``` - name: Generating Markdown from my AsyncAPI document id: generation - uses: asyncapi/github-action-for-generator@v0.0.2 + uses: asyncapi/github-action-for-generator@v0.1.0 - name: Another step where I want to know what files were generated so I can pass it to another step and process them forward if needed run: echo '${{steps.generation.outputs.files}}' ``` @@ -91,13 +91,13 @@ jobs: #Using another action for AsyncAPI for validation - name: Validating AsyncAPI document - uses: WaleedAshraf/asyncapi-github-action@v0.0.2 + uses: WaleedAshraf/asyncapi-github-action@v0.0.3 with: filepath: docs/api/my-asyncapi.yml #In case you do not want to use defaults, you for example want to use different template - name: Generating HTML from my AsyncAPI document - uses: asyncapi/github-action-for-generator@v0.0.2 + uses: asyncapi/github-action-for-generator@v0.1.0 with: template: '@asyncapi/html-template' #In case of template from npm, because of @ it must be in quotes filepath: docs/api/my-asyncapi.yml