Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitLab CI/Pages version #6

Open
rjhancock opened this issue Mar 5, 2019 · 3 comments
Open

GitLab CI/Pages version #6

rjhancock opened this issue Mar 5, 2019 · 3 comments
Labels
enhancement New feature or request

Comments

@rjhancock
Copy link

so I made a GitLab CI/Pages version.

https://gitlab.com/rjhancock/app-landing-page

@emilbaehr
Copy link
Owner

Good idea!

@emilbaehr emilbaehr added the enhancement New feature or request label Sep 1, 2019
@emilbaehr emilbaehr changed the title Loved the idea.... GitLab CI/Pages version Feb 25, 2020
@RichardFevrier
Copy link

Any plan to support both here?

@rjhancock
Copy link
Author

For reference, this is all the CI file is:

image: ruby:2.3

variables:
  JEKYLL_ENV: production
  LC_ALL: C.UTF-8

before_script:
  - bundle install

test:
  stage: test
  script:
    - bundle exec jekyll build -d test
  artifacts:
    paths:
      - test
  except:
    - master

pages:
  stage: deploy
  script:
    - bundle exec jekyll build -d public
  artifacts:
    paths:
      - public
  only:
    - master

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants