mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-24 11:36:21 +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
|
ls
|
||||||
apkPath=pwd/$GITHUB_HEAD_REF.apk
|
apkPath=pwd/$GITHUB_HEAD_REF.apk
|
||||||
echo "===================="
|
echo "===================="
|
||||||
echo apkPath
|
echo $apkPath
|
||||||
echo "===================="
|
echo "===================="
|
||||||
|
echo "artifactPath=test-apk/${{ GITHUB_HEAD_REF.apk }}" >> $GITHUB_ENV
|
||||||
|
echo ${{ env.artifactPath }}
|
||||||
|
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: test-apks-artifacts
|
name: test-apks-artifacts
|
||||||
path: apkPath
|
path: test-apk/${{ GITHUB_HEAD_REF }}.apk
|
||||||
|
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: test-apks-artifacts
|
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