-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (52 loc) · 1.42 KB
/
AA.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: 打印提交信息
run-name: 打印提交信息 by @${{ github.actor }}
on: [push]
jobs:
print_env:
uses: Dango-dx/ReusableWorkflows/.github/workflows/print_github_info.yml@master
job0:
runs-on: ubuntu-latest
# container:
# 指定您的自定义 Docker 镜像及其标签
# image: registry.cn-shanghai.aliyuncs.com/dango/android_ci:latest
# platform
# options: --platform linux/amd64
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: 发布
run: |
export JAVA_HOME=$JAVA_HOME_17_X64
env
ls -a
echo "-------->>>>>>"
chmod +x ./gradlew && ./gradlew assembleRelease
ls -a
echo "-------->>>>>>"
cd app
ls -a
echo "-------->>>>>>"
cd build
ls -a
echo "-------->>>>>>"
cd outputs
ls -a
echo "-------->>>>>>"
cd apk
ls -a
echo "-------->>>>>>"
cd release
ls -a
echo "-------->>>>>>"
continue-on-error: true
- name: check
run: |
cd ./app/build/outputs/apk/release/
ls -a
continue-on-error: true
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: my-artifacts
path: ./app/build/outputs/apk/release/
continue-on-error: true