File tree Expand file tree Collapse file tree 1 file changed +15
-7
lines changed Expand file tree Collapse file tree 1 file changed +15
-7
lines changed Original file line number Diff line number Diff line change 29
29
30
30
- uses : actions/upload-artifact@v2
31
31
with :
32
- name : pypi-packages
32
+ name : pypi-packages-${{ github.sha }}
33
33
path : dist
34
34
35
- publish-package :
36
- runs-on : ubuntu-20.04
37
- needs : build-package
38
- steps :
39
- - uses : actions/checkout@v2
40
35
- name : Upload to release
41
36
if : startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
42
37
uses : svenstaro/upload-release-action@v2
48
43
overwrite : false
49
44
file_glob : true
50
45
46
+ publish-package :
47
+ runs-on : ubuntu-20.04
48
+ needs : build-package
49
+ steps :
50
+ - uses : actions/checkout@v2
51
+ - uses : actions/download-artifact@v2
52
+ with :
53
+ name : pypi-packages-${{ github.sha }}
54
+ path : dist
55
+ - name : Show packages
56
+ run : |
57
+ ls -lh dist/
58
+
51
59
- name : Delay releasing
52
60
if : startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
53
61
uses : juliangruber/sleep-action@v1
@@ -102,7 +110,7 @@ jobs:
102
110
103
111
- uses : actions/download-artifact@v2
104
112
with :
105
- name : pypi-packages
113
+ name : pypi-packages-${{ github.sha }}
106
114
path : dist
107
115
108
116
- name : Pull files from S3
You can’t perform that action at this time.
0 commit comments