From 8de24b5b3df5a0aa6eae624670a59cc5ad29d63f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20K=C3=BCrzeder?= Date: Mon, 25 May 2020 20:44:08 +0200 Subject: [PATCH] Add missing Documentation about outputs --- README.md | 7 ++++--- action.yml | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 40e10d0..a804519 100644 --- a/README.md +++ b/README.md @@ -32,13 +32,14 @@ A GitHub Action to deploy ARM templates. (See [assets/json/serviceprincipal.json](assets/json/parameters.json)) ## Outputs - +Every template output will be exported as output. For example the output is called `containerName` then it will be available with `${{ steps.STEP.outputs.containerName }}` +Additionally are the following outputs available: * `deploymentName` Specifies the complete deployment name which has been generated ## Usage ```yml -- uses: whiteducksoftware/azure-arm-action@v2.2 +- uses: whiteducksoftware/azure-arm-action@v2.3 with: creds: ${{ secrets.AZURE_CREDENTIALS }} resourceGroupName: @@ -57,7 +58,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - - uses: whiteducksoftware/azure-arm-action@v2.2 + - uses: whiteducksoftware/azure-arm-action@v2.3 with: creds: ${{ secrets.AZURE_CREDENTIALS }} resourceGroupName: diff --git a/action.yml b/action.yml index f381f4e..9cd47b9 100644 --- a/action.yml +++ b/action.yml @@ -29,4 +29,4 @@ branding: icon: package runs: using: 'docker' - image: 'docker://whiteduck/azure-arm-action:v2.2' \ No newline at end of file + image: 'docker://whiteduck/azure-arm-action:v2.3' \ No newline at end of file