From 4942e157af66b6fe7d3cefb0a85253e4a022e486 Mon Sep 17 00:00:00 2001 From: Yosh Date: Thu, 5 Dec 2024 20:05:54 +0100 Subject: [PATCH] fix escapes --- action.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/action.yml b/action.yml index 84473b6..0101a6d 100644 --- a/action.yml +++ b/action.yml @@ -69,11 +69,11 @@ runs: run: | set -ex wkg oci push ${{ inputs.oci-reference-without-tag }}:${{ inputs.version }} ${{ inputs.file }}\ - --annotation "org.opencontainers.image.description"=${{ inputs.description }} \ - --annotation "org.opencontainers.image.source"=${{ inputs.source }} \ - --annotation "org.opencontainers.image.url"=${{ inputs.homepage }} \ - --annotation "org.opencontainers.image.version"=${{ inputs.version }} \ - --annotation "org.opencontainers.image.licenses"=${{ inputs.licenses }} + --annotation "org.opencontainers.image.description"="${{ inputs.description }}" \ + --annotation "org.opencontainers.image.source"="${{ inputs.source }}" \ + --annotation "org.opencontainers.image.url"="${{ inputs.homepage }}" \ + --annotation "org.opencontainers.image.version"="${{ inputs.version }}" \ + --annotation "org.opencontainers.image.licenses"="${{ inputs.licenses }}" - uses: actions/upload-artifact@v4 with: