From a700217a51c6213549c831d522a58411a22790ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20K=C3=BCrzeder?= Date: Wed, 27 May 2020 11:05:47 +0200 Subject: [PATCH] Fixed typos --- README.md | 2 +- examples/Advanced.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3649739..27877ee 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ jobs: creds: ${{ secrets.AZURE_CREDENTIALS }} resourceGroupName: templateLocation: - parametersLocation: OR + parameters: OR deploymentName: ``` For more advanced workflows see [examples/Advanced.md](examples/Advanced.md). \ No newline at end of file diff --git a/examples/Advanced.md b/examples/Advanced.md index 22bd435..7626e82 100644 --- a/examples/Advanced.md +++ b/examples/Advanced.md @@ -1,6 +1,6 @@ # Advanced example on how to use this Action -In this exmaple we deploy 2 templates (for the sake of the example the same template) but the seccond one depends on the first one as we need first the output of first one and seccond we need to override a parameter in the seccond template. -Our template has two outputs `location` and `containerName`. But here we only interested in `containerName`, the first template will output that one and the seccond one requires that and appends `-overriden` so we can see it got overriden. +In this exmaple we deploy 2 templates (for the sake of the example the same template) but the second one depends on the first one as we need first the output of first one and second we need to override a parameter in the second template. +Our template has two outputs `location` and `containerName`. But we are only interested in `containerName`, the first template will output that one and the second one requires that and appends `-overriden` so we can see it got overriden. ## Steps ```yaml @@ -34,7 +34,7 @@ If we now add a Shell script with a simple echo from that value, ``` we can see that on the console will be `github-action` printed. -Now we add our seccond deployment which relies on that value and modfies the `containerName` parameter, +Now we add our second deployment which relies on that value and modfies the `containerName` parameter, ```yaml - uses: whiteducksoftware/azure-arm-action@v3 id: deploy2