Merge branch 'master' into release/rework-css

This commit is contained in:
Jean-Baptiste Pasquier 2020-06-13 16:04:52 +02:00
commit c598a79a85
No known key found for this signature in database
GPG Key ID: F2702E6D22ED4D62
2 changed files with 32 additions and 0 deletions

View File

@ -264,3 +264,21 @@ volumes:
when: manual
tags:
- deploy
communityhubl:
stage: deployment
environment:
name: communityhubl
url: https://community.hubl.world
before_script:
- npm ci --cache .npm --prefer-offline --only=production
script:
- echo "$APP_CONFIG_HUBL_COMMUNITY" > config.json
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
- npm run build
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* community-hubl@astral.startinblox.com:~/front/
only:
- master
when: manual
tags:
- deploy

View File

@ -117,6 +117,20 @@
--color-backlink: var(--color-secondary);
--color-content-header: var(--color-grey-9);
/* directory */
--color-directory-primary: var(--color-primary);
--color-directory-secondary: var(--color-secondary);
--color-directory-complementary: var(--color-complementary);
--color-directory-complementary-darken: var(--color-complementary-darken);
--color-directory-white: var(--color-white);
--color-directory-black: var(--color-black);
--color-directory-grey-1: var(--color-grey-7);
--color-directory-grey-2: var(--color-grey-10);
--color-directory-grey-3: var(--color-grey-9);
--color-directory-grey-4: var(--color-grey-4);
--color-directory-grey-5: var(--color-grey-13);
}
/* Variables for event */