We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef682f6 commit f064567Copy full SHA for f064567
.github/workflows/packing.yml
@@ -532,10 +532,10 @@ jobs:
532
533
- name: Publish artifacts
534
run: |
535
- FILE_FLAGS = find deb_dist/ -type f -regex '.*\.deb' -or -regex '.*\.dsc' \
536
- | xargs -I {} sh -c 'echo -F $(basename {})=@{}' | xargs
+ FILE_FLAGS=$(find deb_dist/ -type f -regex '.*\.deb' -or -regex '.*\.dsc' \
+ | xargs -I {} sh -c 'echo -F $(basename {})=@{}' | xargs)
537
curl -v -LfsS -X PUT $RWS_REPO/release/modules/$OS/$DIST \
538
- -F product=python3-tarantool $FILE_FLAGS -u ${RWS_AUTH}
+ -F product=python3-tarantool $FILE_FLAGS -u $RWS_AUTH
539
env:
540
RWS_REPO: https://rws-dev.tarantool.org
541
RWS_AUTH: ${{ secrets.RWS_AUTH }}
0 commit comments