Commit a33a9043 authored by DJOUNANG NANA Guy Rostan's avatar DJOUNANG NANA Guy Rostan
Browse files

fix: remove surrounding double quotes to variables which cause issues when the...

fix: remove surrounding double quotes to variables which cause issues when the job is launch on a project
parent 12cf0bf1
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -8,10 +8,10 @@ cargo_doc:
      OUTPUT_FOLDER: "website_build"
      ADDITIONAL_OPTIONS: ''
    script:
      - cd "$PROJECT_ROOT"
      - cargo doc --target-dir "${OUTPUT_FOLDER}" --lib="$ONLY_LIB" --release="$RELEASE_MODE" "$ADDITIONAL_OPTIONS"
      - cd $PROJECT_ROOT
      - cargo doc --target-dir ${OUTPUT_FOLDER} --lib=$ONLY_LIB --release=$RELEASE_MODE $ADDITIONAL_OPTIONS
    artifacts:
      when: always
      expose_as: "Cargo_doc build"
      paths:
        - "$OUTPUT_FOLDER"
        - $OUTPUT_FOLDER