.gitlab-ci.yml 457 B

12345678910111213141516
  1. # The Docker image that will be used to build your app
  2. image: alpine
  3. # Functions that should be executed before the build script is run
  4. before_script: []
  5. pages:
  6. script:
  7. - ./src/build.sh
  8. artifacts:
  9. paths:
  10. # The folder that contains the files to be exposed at the Page URL
  11. - public
  12. rules:
  13. # This ensures that only pushes to the default branch will trigger
  14. # a pages deploy
  15. - if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH