File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -50,18 +50,21 @@ jobs:
50
50
touch "${ARTIFACTS_DIR_NAME}/llm_demo/executorch.aar"
51
51
52
52
upload-release-aar :
53
- name : Upload AAR to RC if ciflow/android/ release tag is present
53
+ name : upload- release-aar
54
54
needs : build-aar
55
55
if : ${{ startsWith(github.ref, 'refs/tags/ciflow/android/release') }}
56
56
runs-on : ubuntu-22.04
57
57
timeout-minutes : 10
58
- run : |
59
- wget https://gha-artifacts.s3.amazonaws.com/${{ github.repository }}/${{ github.run_id }}/artifacts/llm_demo/executorch.aar
58
+ steps :
59
+ - name : Upload AAR to RC if ciflow/android/release tag is present
60
+ shell : bash
61
+ run : |
62
+ wget https://gha-artifacts.s3.amazonaws.com/${{ github.repository }}/${{ github.run_id }}/artifacts/llm_demo/executorch.aar
60
63
61
- pip install awscli==1.32.18
62
- AWS_CMD="aws s3 cp --dryrun"
63
- VERSION_NAME="$(date -f "%Y%m%d")"
64
- ${AWS_CMD} executorch.aar s3://ossci-android/executorch/release/${VERSION_NAME}/executorch.aar --acl public-read
64
+ pip install awscli==1.32.18
65
+ AWS_CMD="aws s3 cp --dryrun"
66
+ VERSION_NAME="$(date -f "%Y%m%d")"
67
+ ${AWS_CMD} executorch.aar s3://ossci-android/executorch/release/${VERSION_NAME}/executorch.aar --acl public-read
65
68
66
69
# Running Android emulator directly on the runner and not using Docker
67
70
run-emulator :
You can’t perform that action at this time.
0 commit comments