Skip to content

Instantly share code, notes, and snippets.

View SilentHackerz's full-sized avatar
🎯
Focusing

Mohammad Ayub SilentHackerz

🎯
Focusing
  • Infosys Limited
  • Hyderabad, Telangana, India
  • 05:47 (UTC +05:30)
  • X @SilentHackerz
View GitHub Profile
@SilentHackerz
SilentHackerz / gitlab-ci.yml
Created December 23, 2018 19:44
Publish your create-react-app website via Gitlab CI. tags: #gitlab #git #deploy #ci
image: node:6.5.0 # can be upgraded, depending on your node version used
pages:
stage: deploy
script:
- npm install
- npm run build
- rm -rf public
- mv build public
artifacts: