@@ -27,16 +27,10 @@ jobs:
27
27
28
28
- run : make wheel SYMBOLIC_PYTHON=python2
29
29
30
- - uses : actions/setup-node@v1
31
-
32
- - name : Upload to Zeus
33
- env :
34
- ZEUS_HOOK_BASE : ${{ secrets.ZEUS_HOOK_BASE }}
35
- run : |
36
- npm install -D @zeus-ci/cli
37
- npx zeus job update --build ${{ github.run_id }} --job ${{ github.job }} --ref ${{ github.sha }}
38
- npx zeus upload --build ${{ github.run_id }} --job ${{ github.job }} --type "application/zip+wheel" py/dist/*
39
- npx zeus job update --build ${{ github.run_id }} --job ${{ github.job }} --status passed
30
+ - uses : actions/upload-artifact@v2
31
+ with :
32
+ name : ${{ github.sha }}
33
+ path : py/dist/*
40
34
41
35
python-wheel-linux :
42
36
strategy :
@@ -61,16 +55,10 @@ jobs:
61
55
- name : Build in Docker
62
56
run : make wheel-manylinux IMAGE=quay.io/pypa/manylinux2010_${{ matrix.build-arch }}
63
57
64
- - uses : actions/setup-node@v1
65
-
66
- - name : Upload to Zeus
67
- env :
68
- ZEUS_HOOK_BASE : ${{ secrets.ZEUS_HOOK_BASE }}
69
- run : |
70
- npm install -D @zeus-ci/cli
71
- npx zeus job update --build ${{ github.run_id }} --job ${{ github.job }} --ref ${{ github.sha }}
72
- npx zeus upload --build ${{ github.run_id }} --job ${{ github.job }} --type "application/zip+wheel" py/dist/*
73
- npx zeus job update --build ${{ github.run_id }} --job ${{ github.job }} --status passed
58
+ - uses : actions/upload-artifact@v2
59
+ with :
60
+ name : ${{ github.sha }}
61
+ path : py/dist/*
74
62
75
63
sdist :
76
64
name : Python sdist
85
73
86
74
- run : make sdist
87
75
88
- - uses : actions/setup-node@v1
89
-
90
- - name : Upload to Zeus
91
- env :
92
- ZEUS_HOOK_BASE : ${{ secrets.ZEUS_HOOK_BASE }}
93
- run : |
94
- npm install -D @zeus-ci/cli
95
- npx zeus job update --build ${{ github.run_id }} --job ${{ github.job }} --ref ${{ github.sha }}
96
- npx zeus upload --build ${{ github.run_id }} --job ${{ github.job }} --type "application/zip+wheel" py/dist/*
97
- npx zeus job update --build ${{ github.run_id }} --job ${{ github.job }} --status passed
76
+ - uses : actions/upload-artifact@v2
77
+ with :
78
+ name : ${{ github.sha }}
79
+ path : py/dist/*
0 commit comments