File tree 2 files changed +5
-8
lines changed
2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -364,7 +364,11 @@ jobs:
364
364
path : rpm_dist
365
365
366
366
- name : Publish artifacts
367
- run : make rpm-dist-publish
367
+ run : |
368
+ FILE_FLAGS = find rpm_dist/ -type f -regex '.*\.rpm' \
369
+ | xargs -I {} sh -c 'echo -F $(basename {})=@{}' | xargs
370
+ curl -v -LfsS -X PUT $RWS_REPO/release/modules/$OS/$DIST \
371
+ -F product=python3-tarantool $(FILE_FLAGS) -u $RWS_AUTH
368
372
env :
369
373
RWS_REPO : https://rws.tarantool.org
370
374
RWS_AUTH : ${{ secrets.RWS_AUTH }}
Original file line number Diff line number Diff line change @@ -61,13 +61,6 @@ rpm-dist:
61
61
rpm-dist-check :
62
62
rpm -K --nosignature rpm_dist/* .rpm
63
63
64
- .PHONY : rpm-dist-publish
65
- rpm-dist-publish :
66
- $(eval FILE_FLAGS := $(shell find rpm_dist/ -type f -regex '.* \.rpm'
67
- | xargs -I {} sh -c ' echo -F $$(basename {})=@{}' | xargs))
68
- curl -v -LfsS -X PUT ${RWS_REPO} /release/modules/${OS} /${DIST} \
69
- -F product=python3-tarantool $(FILE_FLAGS ) -u ${RWS_AUTH}
70
-
71
64
72
65
.PHONY : deb-changelog-entry
73
66
deb-changelog-entry :
You can’t perform that action at this time.
0 commit comments