Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
SCDL
Schéma Subventions
Commits
f110e170
Commit
f110e170
authored
Jun 05, 2019
by
Christophe Benz
Browse files
Update CI
parent
1f5aaea9
Pipeline
#917
passed with stages
in 1 minute and 1 second
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
f110e170
variables
:
CI_REPOSITORY_SSH_URL
:
git@git.opendatafrance.net:${CI_PROJECT_PATH}.git
SCHEMA_JSON
:
schema.json
SCHEMA_MD
:
schema.md
build_schema_doc
:
stage
:
build
image
:
node:10
only
:
changes
:
-
$SCHEMA_JSON
variables
:
LC_ALL
:
fr_FR.utf8
before_script
:
-
npm install @opendataschema/table-schema-to-markdown
script
:
-
npx table-schema-to-markdown $SCHEMA_JSON > $SCHEMA_MD
artifacts
:
paths
:
-
$SCHEMA_MD
cache
:
paths
:
-
node_modules/
tags
:
-
scdl
commit_schema_md
:
stage
:
deploy
image
:
git.opendatafrance.net:4567/scdl/documentation
only
:
changes
:
-
$SCHEMA_JSON
before_script
:
-
eval $(ssh-agent -s)
-
ssh-add <(echo "$SSH_PRIVATE_KEY")
-
mkdir -p ~/.ssh
-
ssh-keyscan -t rsa git.opendatafrance.net >> ~/.ssh/known_hosts
-
git config --global user.email "table-schema-to-markdown"
-
git config --global user.name "Table Schema to Markdown bot"
script
:
-
git clone --branch $CI_COMMIT_REF_NAME $CI_REPOSITORY_SSH_URL
-
mv $SCHEMA_MD $CI_PROJECT_NAME
-
cd $CI_PROJECT_NAME
-
git add $SCHEMA_MD
-
git commit -m "Update $SCHEMA_MD" ||
true
-
git push
tags
:
-
scdl
include
:
-
project
:
'
scdl/doc-generator'
ref
:
next
file
:
'
.schema-gitlab-ci-template.yml'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment