Skip to content

Commit

Permalink
Release v4.2.0 Commit d5173be Doc Commit #d7ce5c4
Browse files Browse the repository at this point in the history
  • Loading branch information
buildmachine-sou-jenkins2 committed Sep 23, 2024
1 parent 6b5bd45 commit 66f36a8
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 3 deletions.
30 changes: 30 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
image: ruby:3.2

workflow:
rules:
- if: $CI_COMMIT_BRANCH

before_script:
- gem install bundler
- bundle install

pages:
stage: deploy
script:
- bundle exec jekyll build -d public
artifacts:
paths:
- public
rules:
- if: $CI_COMMIT_BRANCH == "gh-pages"
environment: production

test:
stage: test
script:
- bundle exec jekyll build -d test
artifacts:
paths:
- test
rules:
- if: $CI_COMMIT_BRANCH != "gh-pages"
5 changes: 3 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
source 'https://rubygems.org'
gem 'github-pages', group: :jekyll_plugins
source "https://rubygems.org"

gem "jekyll"
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ title: Audit
email: [email protected]

description: CAF Auditing Documentation
baseurl: "/audit-service"
baseurl: ""

# Build settings
exclude: ['node_modules']
Expand Down

0 comments on commit 66f36a8

Please sign in to comment.