Skip to content

Commit 25511c6

Browse files
authored
fix: allow space in binary path artifact name (#17)
1 parent ddb4aa7 commit 25511c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ runs:
267267
- name: Re-sign APK
268268
if: ${{ env.ARTIFACT_URL && inputs.re-sign == 'true' }}
269269
run: |
270-
npx rock sign:android ${{ env.ARTIFACT_PATH }} \
270+
npx rock sign:android "${{ env.ARTIFACT_PATH }}" \
271271
--build-jsbundle
272272
shell: bash
273273
working-directory: ${{ inputs.working-directory }}
@@ -313,7 +313,7 @@ runs:
313313
- name: Upload Artifact to Remote Cache for re-signed builds
314314
if: ${{ env.PROVIDER_NAME != 'GitHub' && inputs.re-sign == 'true' }}
315315
run: |
316-
OUTPUT=$(npx rock remote-cache upload --name ${{ env.ARTIFACT_NAME }} --binary-path ${{ env.ARTIFACT_PATH }} --json --verbose) || (echo "$OUTPUT" && exit 1)
316+
OUTPUT=$(npx rock remote-cache upload --name ${{ env.ARTIFACT_NAME }} --binary-path "${{ env.ARTIFACT_PATH }}" --json --verbose) || (echo "$OUTPUT" && exit 1)
317317
echo "ARTIFACT_URL=$(echo "$OUTPUT" | jq -r '.url')" >> $GITHUB_ENV
318318
shell: bash
319319

0 commit comments

Comments
 (0)