mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 18:28:26 -04:00
12 lines
377 B
YAML
12 lines
377 B
YAML
image: node:alpine
|
|
before_script:
|
|
- apk update && apk add openssl
|
|
- wget https://github.com/gohugoio/hugo/releases/download/v0.40.1/hugo_0.40.1_Linux-64bit.tar.gz
|
|
- tar xf hugo_0.40.1_Linux-64bit.tar.gz && cp ./hugo /usr/bin
|
|
deploy:
|
|
stage: deploy
|
|
script:
|
|
- npm install --quiet firebase-tools -g
|
|
- rm -rf public
|
|
- hugo
|
|
- firebase deploy --token $FIREBASE_TOKEN |