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 fe4c9ee commit 185fd47Copy full SHA for 185fd47
.github/workflows/packing.yml
@@ -368,10 +368,11 @@ jobs:
368
369
- name: Publish artifacts
370
run: |
371
- FILE_FLAGS=$(find rpm_dist/ -type f -regex '.*\.rpm' \
372
- | xargs -I {} sh -c 'echo -F $(basename {})=@{}' | xargs)
+ export FILE_FLAGS=$(find rpm_dist/ -type f -regex '.*\.rpm' \
+ | xargs -I {} sh -c 'echo -F $(basename {})=@{}' \
373
+ | xargs)
374
curl -v -LfsS -X PUT $RWS_REPO/release/modules/$OS/$DIST \
- -F product=python3-tarantool $(FILE_FLAGS) -u $RWS_AUTH
375
+ -F product=python3-tarantool $FILE_FLAGS -u $RWS_AUTH
376
env:
377
RWS_REPO: https://rws-dev.tarantool.org
378
RWS_AUTH: ${{ secrets.RWS_AUTH }}
0 commit comments