We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87e7258 commit 412d2d6Copy full SHA for 412d2d6
.github/workflows/packing.yml
@@ -535,10 +535,10 @@ jobs:
535
536
- name: Publish artifacts
537
run: |
538
- FILE_FLAGS = find deb_dist/ -type f -regex '.*\.deb' -or -regex '.*\.dsc' \
539
- | 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)
540
curl -v -LfsS -X PUT $RWS_REPO/release/modules/$OS/$DIST \
541
- -F product=python3-tarantool $FILE_FLAGS -u ${RWS_AUTH}
+ -F product=python3-tarantool $FILE_FLAGS -u $RWS_AUTH
542
env:
543
RWS_REPO: https://rws-dev.tarantool.org
544
RWS_AUTH: ${{ secrets.RWS_AUTH }}
0 commit comments