diff --git a/action.yml b/action.yml index 0101a6d..2549194 100644 --- a/action.yml +++ b/action.yml @@ -66,9 +66,11 @@ runs: - name: Push the Wasm binary to the registry shell: bash if: ${{ inputs.worlds != '*' }} + env: + INPUT_OCI_REF_WITHOUT_TAG: ${{ inputs.oci-reference-without-tag }} run: | set -ex - wkg oci push ${{ inputs.oci-reference-without-tag }}:${{ inputs.version }} ${{ inputs.file }}\ + wkg oci push "${INPUT_OCI_REF_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 }}" \