ci.yml18 lines
workflow:
  concurrency:
    group: static-$CI_COMMIT_REF_NAME
    cancel-in-progress: false

stages: [deploy]

publish_pages:
  stage: deploy
  tags: [docker]
  interruptible: false
  script:
    - python3 scripts/build_native.py
  artifacts:
    paths: [static-manifest.json, static-release.tar]
    expire_in: never
  pages:
    path: public