From c61fa24e924b64da1981a3479a4da52557c8ab78 Mon Sep 17 00:00:00 2001 From: goruha Date: Thu, 27 Apr 2023 04:05:04 +0000 Subject: [PATCH] Update README.md and docs --- README.md | 7 +++++-- docs/github-action.md | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0b0501d1..5b3b7575 100644 --- a/README.md +++ b/README.md @@ -113,6 +113,8 @@ Example how you can use workaround to reference matrix job outputs. matrix-key: ${{ matrix.platform }} outputs: |- image: ${{ steps.build.outputs.image }}:${{ steps.build.outputs.tag }} + ## Multiline string + tags: ${{ toJson(steps.build.outputs.image) }} ## Read matrix outputs read: @@ -213,6 +215,7 @@ jobs: outputs: image: ${{ fromJson(steps.out.outputs.result).image }} + image_alternative: ${{ steps.out.outputs.image }} ``` Then you can use the workflow with matrix @@ -319,7 +322,7 @@ jobs: | Name | Description | |------|-------------| -| result | Outputs result | +| result | Outputs result (Deprecated!!!) | @@ -418,7 +421,7 @@ In general, PRs are welcome. We follow the typical "fork-and-pull" Git workflow. ## Copyright -Copyright © 2017-2022 [Cloud Posse, LLC](https://cpco.io/copyright) +Copyright © 2017-2023 [Cloud Posse, LLC](https://cpco.io/copyright) diff --git a/docs/github-action.md b/docs/github-action.md index cb125839..c9cf20cf 100644 --- a/docs/github-action.md +++ b/docs/github-action.md @@ -13,5 +13,5 @@ | Name | Description | |------|-------------| -| result | Outputs result | +| result | Outputs result (Deprecated!!!) |