0
我正在使用GitLab來託管我的靜態頁面! 我配置.gitlab-ci.yml文件我收到以下錯誤每次:「無法找到的Gemfile」GitLab CI ..gitlab-ci.yml屬性使用fors靜態頁面
這裏的id .gitlab-的輸出ci.yml文件
image: ruby:2.3
before_script:
- bundle install
job:
script:
- gem install jekyll
- jekyll build
pages:
stage: deploy
script:
- bundle install
- bundle exec jekyll build -d public
artifacts:
paths:
- public
only:
- master
test:
stage: test
script:
- bundle install
- bundle exec jekyll build -d test
artifacts:
paths:
- test
except:
- master
您需要構建通過爲僞影。 –
@JakubKania如何做到這一點? –