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.
git
question. – eftshift0 Commented Apr 1 at 10:57