admin管理员组文章数量:1352057
I am currently working on my private repository, and I want to setup gitlab pages
Here is my .gitlab-ci.yml config file:
default:
image: ruby:3.2
before_script:
- gem install bundler
- bundle config set path 'vendor'
cache:
paths:
- vendor/
workflow:
rules:
- if: $CI_COMMIT_BRANCH
create-pages:
stage: deploy
script:
- bundle exec jekyll build -d public
pages: true # specifies that this is a Pages job and publishes the default public directory
rules:
- if: $CI_COMMIT_BRANCH == "main"
environment: production
pages:
artifacts:
paths:
- public/
test:
stage: test
script:
- bundle exec jekyll build -d test
artifacts:
paths:
- test
rules:
- if: $CI_COMMIT_BRANCH != "main"
The pipeline syntax is incorrect and outputs this error:
Jobs pages config should implement the script:, run:, or trigger: keyword
I have no idea about how gitlab syntax really works and I really don't know what am I missing
I tried searching my issue to the documentation and google search engine itself, but came to no conclusion
I am currently working on my private repository, and I want to setup gitlab pages
Here is my .gitlab-ci.yml config file:
default:
image: ruby:3.2
before_script:
- gem install bundler
- bundle config set path 'vendor'
cache:
paths:
- vendor/
workflow:
rules:
- if: $CI_COMMIT_BRANCH
create-pages:
stage: deploy
script:
- bundle exec jekyll build -d public
pages: true # specifies that this is a Pages job and publishes the default public directory
rules:
- if: $CI_COMMIT_BRANCH == "main"
environment: production
pages:
artifacts:
paths:
- public/
test:
stage: test
script:
- bundle exec jekyll build -d test
artifacts:
paths:
- test
rules:
- if: $CI_COMMIT_BRANCH != "main"
The pipeline syntax is incorrect and outputs this error:
Jobs pages config should implement the script:, run:, or trigger: keyword
I have no idea about how gitlab syntax really works and I really don't know what am I missing
I tried searching my issue to the documentation and google search engine itself, but came to no conclusion
Share Improve this question edited Apr 1 at 11:11 phd 95.4k14 gold badges159 silver badges210 bronze badges asked Apr 1 at 10:51 Konstantinos NikolaidisKonstantinos Nikolaidis 1 New contributor Konstantinos Nikolaidis is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct. 2 |1 Answer
Reset to default 1Your pipeline fails because pages
job doesn't do anything like the error says. As it looks like you're following this guide or something similar, you can just remove that pages
job from the pipeline.
本文标签:
版权声明:本文标题:Jobs pages config should implement the script:, run:, or trigger: keyword (Gitlab CI config) - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743891710a2557039.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
git
question. – eftshift0 Commented Apr 1 at 10:57