Commit c18887fc authored by Nagendra Yallabandi's avatar Nagendra Yallabandi

Add new file

parent ed094615
image: node:10.16.3 # change to match your project's node version
stages:
- build
- deploy
cache:
paths:
- node_modules/
build-pages:
stage: build
script:
- rm -rf build
- CI=false npm install
- CI=false npm run build
- rm -rf public
- cp build/index.html build/404.html
- mv build public
artifacts:
paths:
- public
# only:
# - master
pages:
stage: deploy
script:
- ls # just something
artifacts:
paths:
- public
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