Skip to content

Commit 8114b9d

Browse files
deb no make
1 parent 180e177 commit 8114b9d

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

.github/workflows/packing.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,11 @@ jobs:
525525
path: deb_dist
526526

527527
- 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}
529533
env:
530534
RWS_REPO: https://rws.tarantool.org
531535
RWS_AUTH: ${{ secrets.RWS_AUTH }}

Makefile

-7
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,3 @@ deb-dist:
8484
.PHONY: deb-dist-check
8585
deb-dist-check:
8686
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}

0 commit comments

Comments
 (0)