This GitLab CI configuration is valid. Learn more
.gitlab-ci.yml 260 bytes
stages:
  - deploy
deploy-job:      # This job runs in the deploy stage.
  stage: deploy  # It only runs when *both* jobs in the test stage complete successfully.
  environment: production
  script:
    - Copy-Item -Path .\* -Destination D:\compiler\ -Force