Skip to content

Commit

Permalink
Merge pull request #4 from bytecodealliance/fix-escapes
Browse files Browse the repository at this point in the history
fix escapes
  • Loading branch information
yoshuawuyts authored Dec 5, 2024
2 parents 0054a89 + 4942e15 commit 0a45a3a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 0a45a3a

Please sign in to comment.