1
Fork 0

Delete GitLab CI file

This commit is contained in:
Jake Howard 2021-01-18 14:00:12 +00:00 committed by GitHub
parent 8e6467f2e7
commit f9650465ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,37 +0,0 @@
image: node:lts
variables:
HUGO_VERSION: "0.79.0"
GIT_SUBMODULE_STRATEGY: recursive
stages:
- test
- deploy
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- .npm
- .cache
before_script:
- apt-get update && apt-get install -y curl
- curl -Lo /tmp/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.deb
- dpkg -i /tmp/hugo.deb
- touch .env
- npm ci --cache .npm --prefer-offline
test:
stage: test
script:
- ./scripts/test.sh
pages:
stage: deploy
script:
- ./scripts/release.sh
artifacts:
paths:
- public
only:
- master