File tree 1 file changed +11
-4
lines changed
1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -24,12 +24,16 @@ jobs:
24
24
target : aarch64
25
25
- os : ubuntu
26
26
platform : linux
27
- target : armv7
27
+ target : ppc64le
28
28
interpreter : 3.10.12
29
29
- os : ubuntu
30
30
platform : linux
31
31
target : aarch64
32
32
manylinux : musllinux_1_1
33
+ - os : ubuntu
34
+ platform : linux
35
+ target : s390x
36
+ interpreter : 3.10.12
33
37
34
38
runs-on : ${{ matrix.os }}-latest
35
39
steps :
@@ -120,17 +124,20 @@ jobs:
120
124
|| echo ::set-output name=prerelease::true
121
125
122
126
- name : Set tag
123
- # get tag from file name graph_ml-0.1.tar.gz
124
127
id : set-tag
125
128
run : |
126
129
echo ::set-output name=tag::$(ls dist/*.tar.gz | sed -n 's/.*graph_ml-\(.*\).tar.gz/\1/p')
127
130
131
+ - name : Print TAG
132
+ run : echo "v${{ steps.set-tag.outputs.tag }}"
133
+
128
134
- name : Create Release
129
135
uses : ncipollo/release-action@v1
130
136
with :
131
137
artifacts : " dist/*"
132
138
token : ${{ secrets.GITHUB_TOKEN }}
133
139
draft : false
134
- tag : ${{ steps.set-tag.outputs.tag }}
140
+ tag : " v ${{ steps.set-tag.outputs.tag }}"
135
141
skipIfReleaseExists : false
136
- replacesArtifacts : true
142
+ replacesArtifacts : true
143
+ prerelease : steps.check-version.outputs.prerelease == 'true'
You can’t perform that action at this time.
0 commit comments