Commit 55d648ca by Jonathan Thomas

Initial gitlab CI integration

parent 747a2d9c
stages:
- Deploy
.template: &template
when: always
except:
- tags
only:
- develop
deploy-to-aws:
<<: *template
stage: Deploy
script:
- npm ci
- npm run build
- find dist -type f -regex '.*\.\(htm\|html\|txt\|text\|js\|css\)$' -exec gzip -f -k {} \;
tags:
- api-runner
deploy-to-azure:
<<: *template
stage: Deploy
script:
- npm ci
- npm run build
- find dist -type f -regex '.*\.\(htm\|html\|txt\|text\|js\|css\)$' -exec gzip -f -k {} \;
tags:
- api-azure-runner
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment