next/.gitlab-ci.yml

73 lines
2.5 KiB
YAML
Raw Normal View History

# define the stages in this pipeline
stages:
2023-12-18 23:09:44 -05:00
- build
- deploy
# define the build stage
build_stage:
2023-12-18 23:09:44 -05:00
stage: build
# use node docker image as enviroment
image: node:latest
2023-12-18 23:09:44 -05:00
script:
# install & build the NuxtJS application
- apt update
#- apt-get install -y --no-install-recommends python3 build-essential
- npm install
- npm run build
# define artifacts which are shared between stages
artifacts:
paths:
- .output/
- .nuxt/
2023-12-18 23:09:44 -05:00
# restrict to specific branch
# only:
# - master
2023-12-18 23:09:44 -05:00
# define the deploy stage
deploy_staging:
stage: deploy
environment:
name: staging
url: https://next.rockfic.com
image: ubuntu:latest
# - apt-get update && apt-get install --yes --no-install-recommends rsync git openssh-client curl sshpass
# - eval $(ssh-agent -s)
# - chmod 600 ${SSH_DEPLOY_KEY}
# - ssh-add ${SSH_DEPLOY_KEY}
# - mkdir -p ~/.ssh
# - '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
before_script:
- "bash ${CI_PROJECT_DIR}/.more-ci/deploy-pre.sh ${SSH_DEPLOY_KEY}"
script:
2023-12-26 17:09:35 -05:00
# - "cat ${ENV_FILE} | ssh rockfic@${DEPLOY_SERVER} 'cat > ~/rockfic-staging/.env'"
- rsync --archive --del ${CI_PROJECT_DIR}/ rockfic@${DEPLOY_SERVER}:~/rockfic-staging/
2023-12-26 18:54:12 -05:00
- scp ${ENV_FILE} rockfic@${DEPLOY_SERVER}:rockfic-staging/.env
#- rsync --archive --delete ${CI_PROJECT_DIR}/cnf/ ${DEPLOY_USER}@${DEPLOY_SERVER}:~/cnf/
# restart Node.js and reload nginx configuration
2023-12-26 09:48:05 -05:00
- sshpass -p "${OLDROOTPWD}" ssh root@rockfic.com '~/cp.sh'
- ssh rockfic@${DEPLOY_SERVER} "~/stage.sh"
2023-12-26 18:54:12 -05:00
- ssh rockfic@${DEPLOY_SERVER} node "~/rockfic-staging/.output/server/index.mjs" \&\>/dev/null \& disown \%1
2023-12-28 07:00:25 -05:00
- ssh rockfic@${DEPLOY_SERVER} sudo systemctl reload apache2
except:
- tags
deploy_production:
stage: deploy
environment:
name: production
url: https://www.rockfic.com
image: ubuntu:latest
before_script:
- "bash ${CI_PROJECT_DIR}/.more-ci/deploy-pre.sh ${SSH_DEPLOY_KEY}"
script:
- rsync --archive --del ${CI_PROJECT_DIR}/ root@${DEPLOY_SERVER}:/home/@rockfic/
- scp ${ENV_FILE} root@${DEPLOY_SERVER}:/home/@rockfic/.env
#- rsync --archive --delete ${CI_PROJECT_DIR}/cnf/ ${DEPLOY_USER}@${DEPLOY_SERVER}:~/cnf/
- ssh root@${DEPLOY_SERVER} node "/home/@rockfic/.output/server/index.mjs" \&\>/dev/null \& disown \%1
- ssh root@${DEPLOY_SERVER} sudo systemctl reload apache2
only:
- tags
# restrict to specific branch