Last active
January 7, 2021 14:52
-
-
Save manojsinghnegiwd/a963aba988b1b0a28b1c0cfc733a2323 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stages: | |
- build | |
- deploy | |
build: | |
stage: build | |
tags: | |
- <tag you provided while registering the token> | |
- <second tag> | |
script: | |
- echo "Building deploy package" | |
- yarn install | |
- yarn build | |
- echo "Build successful" | |
artifacts: | |
expire_in: 1 hour | |
paths: | |
- build | |
deploy_production: | |
stage: deploy | |
tags: | |
- <tag you provided while registering the token> | |
- <second tag> | |
script: | |
- echo "Deploying to server" | |
- cp -rv build/* /var/www/html/<destination_folder>/ | |
- echo "Deployed" | |
environment: | |
name: production | |
url: <your deployment url> | |
only: | |
- master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment