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 @@ -525,7 +525,11 @@ jobs:
525
525
path : deb_dist
526
526
527
527
- name : Publish artifacts
528
- run : make deb-dist-publish
528
+ run : |
529
+ FILE_FLAGS = find deb_dist/ -type f -regex '.*\.deb' -or -regex '.*\.dsc' \
530
+ | xargs -I {} sh -c 'echo -F $(basename {})=@{}' | xargs
531
+ curl -v -LfsS -X PUT $RWS_REPO/release/modules/$OS/$DIST \
532
+ -F product=python3-tarantool $FILE_FLAGS -u ${RWS_AUTH}
529
533
env :
530
534
RWS_REPO : https://rws.tarantool.org
531
535
RWS_AUTH : ${{ secrets.RWS_AUTH }}
Original file line number Diff line number Diff line change @@ -84,10 +84,3 @@ deb-dist:
84
84
.PHONY : deb-dist-check
85
85
deb-dist-check :
86
86
dpkg -I deb_dist/* .deb
87
-
88
- .PHONY : deb-dist-publish
89
- deb-dist-publish :
90
- $(eval FILE_FLAGS := $(shell find deb_dist/ -type f -regex '.* \.deb' -or -regex '.* \.dsc' \
91
- | xargs -I {} sh -c ' echo -F $$(basename {})=@{}' | xargs))
92
- curl -v -LfsS -X PUT ${RWS_REPO} /release/modules/${OS} /${DIST} \
93
- -F product=python3-tarantool $(FILE_FLAGS ) -u ${RWS_AUTH}
You can’t perform that action at this time.
0 commit comments