<概要>

https://dev.classmethod.jp/articles/gitlab-runner-ci-cd-1/

image: //Dockerイメージを取得
pages: //GitLab内のジョブの結果をアップロードする
  stage: // ジョブのステージ名を定義
  tags: // Runnerに設定されているタグでRunnerを実行
  script:  //Runnerで実行されるスクリプト

  artifacts:  //ジョブが成功した時に、ジョブに紐付ける成果物のファイルリストとディレクトリ
    paths:
    - public
    
  only:  //ジョブが実行される条件を設定
  - master