From 1aa90966551830597e6adf6350474cfdfb2e8f4a Mon Sep 17 00:00:00 2001 From: lourens-octopus <165963988+lourens-octopus@users.noreply.github.com> Date: Tue, 9 Jul 2024 09:41:04 +1200 Subject: [PATCH] Remove quotes from README.md example The example in the readme has the packageId property as a multi-line string, but with single quotes around the value. This means that the id getting set includes the quotes, which means it doesn't match and therefore doesn't work. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c43ca038..9570ca85 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ steps: uses: OctopusDeploy/push-build-information-action@v3 with: packages: | - '' + version: '' ```