properly quote the output variables

This commit is contained in:
Conor Sloan
2024-02-06 16:22:07 +00:00
parent a07f7523c0
commit 646d55a089
+4 -4
View File
@@ -33,10 +33,10 @@ runs:
- name: Output variables
shell: bash
run: |
echo "package manifest": ${{steps.publish.outputs.package-manifest}}
echo "package manifest sha": ${{steps.publish.outputs.package-manifest-sha}}
echo "package url": ${{steps.publish.outputs.package-url}}
echo "subject name": ${{github.repository}}_${{github.ref}}
echo "package manifest: ${{steps.publish.outputs.package-manifest}}"
echo "package manifest sha: ${{steps.publish.outputs.package-manifest-sha}}"
echo "package url: ${{steps.publish.outputs.package-url}}"
echo "subject name: ${{github.repository}}_${{github.ref}}"
- name: Generate Provenance Attestation
uses: github-early-access/generate-build-provenance@main
id: build-provenance