Skip to content

Commit

Permalink
Try single quotes in different spot
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwellmattryan committed Nov 17, 2024
1 parent 18cc6f1 commit 1b0fc7b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/cd.release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,15 @@ jobs:
- name: Upload to Cloud Storage
run: |
# MacOS
mv "${{ env.INSTALLER_ARTIFACT_NAME }}-macOS/${{ env.INSTALLER_ARTIFACT_NAME }}.dmg" "./${{ env.INSTALLER_DELIVERABLE_NAME }}.dmg"
ls
mv "${{ env.INSTALLER_ARTIFACT_NAME }}-macOS/${{ env.INSTALLER_ARTIFACT_NAME }}.dmg" "./'${{ env.INSTALLER_DELIVERABLE_NAME }}.dmg'"
ls
gcloud storage cp "*.dmg" "gs://${{ secrets.GOOGLE_CLOUD_STORAGE_BUCKET }}/${{ env.INSTALLER_ARTIFACT_STORAGE_PATH }}"
# Windows
mv "${{ env.INSTALLER_ARTIFACT_NAME }}-Windows/${{ env.INSTALLER_ARTIFACT_NAME }}.exe" "./${{ env.INSTALLER_DELIVERABLE_NAME }}.exe"
ls
mv "${{ env.INSTALLER_ARTIFACT_NAME }}-Windows/${{ env.INSTALLER_ARTIFACT_NAME }}.exe" "./'${{ env.INSTALLER_DELIVERABLE_NAME }}.exe'"
ls
gcloud storage cp "*.exe" "gs://${{ secrets.GOOGLE_CLOUD_STORAGE_BUCKET }}/${{ env.INSTALLER_ARTIFACT_STORAGE_PATH }}"
- name: Prepare Body
Expand Down

0 comments on commit 1b0fc7b

Please sign in to comment.