Commit 015252bd authored by Thomas Boni's avatar Thomas Boni
Browse files

declare variables as dict instead of list

parent 6af9c38c
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -6,9 +6,9 @@ documentation:
    entrypoint: [""]
  stage: build
  variables:
    - APIDOC_CONFIG_PATH: '.'
    - APIDOC_OUTPUT_PATH: './apidoc_build'
    - APIDOC_TEMPLATE_PATH: '/usr/lib/node_modules/apidoc/template/'
    APIDOC_CONFIG_PATH: '.'
    APIDOC_OUTPUT_PATH: './apidoc_build'
    APIDOC_TEMPLATE_PATH: '/usr/lib/node_modules/apidoc/template/'
  script:
    - npm install apidoc@0.24.0 -g
    - apidoc --verbose -c "$APIDOC_CONFIG_PATH" -o "$APIDOC_OUTPUT_PATH" -t "$APIDOC_TEMPLATE_PATH"