Skip to content

Commit d820d39

Browse files
[CLIENT-4856] CI/CD: Fix valgrind workflow failing to cache wheel into JFrog due to bad shell syntax (#1081)
1 parent e5d0d98 commit d820d39

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/cache-gh-artifact-in-jfrog.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ jobs:
4848
run: echo "DRY_RUN_FLAG=--dry-run" >> "$GITHUB_ENV"
4949

5050
- name: Upload manylinux build from feature branch to JFrog generic repo
51-
run: jf rt upload "$DRY_RUN_FLAG" "*manylinux*" "$DIR_TO_STORE_ARTIFACT/"
51+
run: |
52+
# shellcheck disable=SC2086
53+
jf rt upload $DRY_RUN_FLAG "*manylinux*" "$DIR_TO_STORE_ARTIFACT/"
5254
working-directory: ${{ env.ARTIFACTS_DEST_DIR }}
5355
env:
5456
DIR_TO_STORE_ARTIFACT: ${{ inputs.dir-to-store-artifact }}

0 commit comments

Comments
 (0)