mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-09 12:29:31 +00:00
Try uploading renamed apk file
This commit is contained in:
parent
1198b16455
commit
0c8636a778
1 changed files with 13 additions and 3 deletions
16
.github/workflows/pr_test_build.yml
vendored
16
.github/workflows/pr_test_build.yml
vendored
|
@ -128,20 +128,30 @@ jobs:
|
|||
ls
|
||||
apkPath=pwd/$GITHUB_HEAD_REF.apk
|
||||
echo "===================="
|
||||
echo apkPath
|
||||
echo $apkPath
|
||||
echo "===================="
|
||||
echo "artifactPath=test-apk/${{ GITHUB_HEAD_REF.apk }}" >> $GITHUB_ENV
|
||||
echo ${{ env.artifactPath }}
|
||||
|
||||
- name: Upload Artifact
|
||||
continue-on-error: true
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: test-apks-artifacts
|
||||
path: apkPath
|
||||
path: test-apk/${{ GITHUB_HEAD_REF }}.apk
|
||||
|
||||
- name: Upload Artifact
|
||||
continue-on-error: true
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: test-apks-artifacts
|
||||
path: $apkPath
|
||||
path: ${{ apkPath }}
|
||||
|
||||
- name: Upload Artifact
|
||||
continue-on-error: true
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: test-apks-artifacts
|
||||
path: ${{ env.artifactPath }}
|
||||
retention-days: 30
|
||||
|
||||
|
|
Loading…
Reference in a new issue