Skip to content

Instantly share code, notes, and snippets.

@fatihturan
Created March 23, 2021 07:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fatihturan/647f6cce185ead31fd52ec464cc958ed to your computer and use it in GitHub Desktop.
Save fatihturan/647f6cce185ead31fd52ec464cc958ed to your computer and use it in GitHub Desktop.
image: node:10 # change to match your node version
cache:
paths:
- node_modules/
before_script:
- rm -rf build
- npm install
pages:
stage: deploy
script:
- npm run build
- rm -rf public
- mv build public
artifacts:
paths:
- public
only:
- master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment