mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-27 23:36:47 +00:00
CI: Properly handle spaces in filenames
This commit is contained in:
2
.github/workflows/build_debug_apk.yml
vendored
2
.github/workflows/build_debug_apk.yml
vendored
@@ -50,7 +50,7 @@ jobs:
|
||||
oldArtifactPath="${{ steps.sign-debug-apk.outputs.signedReleaseFile }}"
|
||||
newArtifactPath="${oldArtifactPath%'-signed.apk'}.apk"
|
||||
echo "ARTIFACT_PATH=$newArtifactPath" >> $GITHUB_ENV
|
||||
mv $oldArtifactPath $newArtifactPath
|
||||
mv "$oldArtifactPath" "$newArtifactPath"
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
|
||||
2
.github/workflows/build_release_apk.yml
vendored
2
.github/workflows/build_release_apk.yml
vendored
@@ -46,7 +46,7 @@ jobs:
|
||||
oldArtifactPath="${{ steps.sign-debug-apk.outputs.signedReleaseFile }}"
|
||||
newArtifactPath="${oldArtifactPath%'-signed.apk'}.apk"
|
||||
echo "ARTIFACT_PATH=$newArtifactPath" >> $GITHUB_ENV
|
||||
mv $oldArtifactPath $newArtifactPath
|
||||
mv "$oldArtifactPath" "$newArtifactPath"
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
|
||||
Reference in New Issue
Block a user