Skip to content
Snippets Groups Projects
Select Git revision
  • 735afa7d4b0155be1d40e3c3707cd5e034777d24
  • mui5-annotation-on-video-stable default
  • get_setter_canvasSizeInformations
  • fix-error-div-into-p
  • annotation-on-video-v2
  • detached
  • annotation-on-video-r17
  • mui5
  • mui5-react-18
  • jacob-test
  • annotation-on-video protected
  • master
  • test-antoinev1
  • 20-fetch-thumbnail-on-annotation
  • add-research-field
  • Save
  • add-plugin
  • 14-wip-no-seek-to
  • 14-bug-on-video-time-control
  • 9_wip_videotests
  • _upgrade_material_ui
  • latest-tetras-16
  • v3.3.0
  • v3.2.0
  • v3.1.1
  • v3.1.0
  • v3.0.0
  • v3.0.0-rc.7
  • v3.0.0-rc.6
  • v3.0.0-rc.5
  • v3.0.0-rc.4
  • v3.0.0-rc.3
  • v3.0.0-rc.2
  • v3.0.0-rc.1
  • v3.0.0-beta.10
  • v3.0.0-beta.9
  • v3.0.0-beta.8
  • v3.0.0-beta.7
  • v3.0.0-beta.6
  • v3.0.0-beta.5
  • v3.0.0-beta.3
41 results

package.json

Blame
  • This project manages its dependencies using npm. Learn more
    .gitlab-ci.yml 1.07 KiB
    # Before using this .gitlab-ci.yml:
    #
    # - This example uses the latest Docker image, but you might want to use the
    #   exact version to avoid any broken pipelines.
    #   All available Hugo versions are listed under https://gitlab.com/pages/hugo/container_registry.
    # - Read about the difference between hugo and hugo_extended
    #   https://gitlab.com/pages/hugo/-/blob/main/README.md#hugo-vs-hugo_extended.
    # - To change the theme, see
    #   https://gitlab.com/pages/hugo/-/blob/main/README.md#use-a-custom-theme.
    #
    image: registry.gitlab.com/pages/hugo:0.91.0
    
    # Set this if you intend to use Git submodules
    variables:
      GIT_SUBMODULE_STRATEGY: recursive
      HUGO_ENV: production
    
    default:
      before_script:
        - apk add --update --no-cache git go
        - git submodule update --init --recursive
        - hugo mod init gitlab.com/pages/hugo
        - hugo mod get -u github.com/gethyas/doks
    
    test:
      script:
        - hugo
      rules:
        - if: $CI_COMMIT_REF_NAME != $CI_DEFAULT_BRANCH
    
    pages:
      script:
        - hugo
      artifacts:
        paths:
          - public
      rules:
        - if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH