mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-03-11 17:06:34 +00:00
Try uploading single apk file
This commit is contained in:
parent
9b20af9292
commit
1198b16455
1 changed files with 13 additions and 1 deletions
14
.github/workflows/pr_test_build.yml
vendored
14
.github/workflows/pr_test_build.yml
vendored
|
@ -126,10 +126,22 @@ jobs:
|
||||||
mv pubspec_base.yaml test-apk/$GITHUB_HEAD_REF.apk
|
mv pubspec_base.yaml test-apk/$GITHUB_HEAD_REF.apk
|
||||||
cd test-apk
|
cd test-apk
|
||||||
ls
|
ls
|
||||||
|
apkPath=pwd/$GITHUB_HEAD_REF.apk
|
||||||
|
echo "===================="
|
||||||
|
echo apkPath
|
||||||
|
echo "===================="
|
||||||
|
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
|
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: test-apk/"$GITHUB_HEAD_REF".apk
|
path: apkPath
|
||||||
|
|
||||||
|
- name: Upload Artifact
|
||||||
|
continue-on-error: true
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: test-apks-artifacts
|
||||||
|
path: $apkPath
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue