Minor typo fixes #985
This file contains 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
on: | |
push: | |
branches: | |
- master | |
- feature-internals | |
name: Deploy test instance | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Install SSH key | |
uses: shimataro/[email protected] | |
with: | |
key: ${{ secrets.SSH_KEY }} | |
known_hosts: ${{ secrets.KNOWN_HOSTS }} | |
- name: Deploy to server | |
env: | |
TARGET_HOST_02: dev.emailengine.app | |
NODE_ENV: production | |
SERVICE_NAME: emailengine | |
id: deploy | |
run: | | |
echo $GITHUB_SHA > commit.txt | |
./update-info.sh | |
npm install --omit=dev | |
tar czf /tmp/${SERVICE_NAME}.tar.gz --exclude .git . | |
scp -o "UserKnownHostsFile=/dev/null" -o "StrictHostKeyChecking=no" /tmp/${SERVICE_NAME}.tar.gz deploy@${TARGET_HOST_02}: | |
ssh -o "UserKnownHostsFile=/dev/null" -o "StrictHostKeyChecking=no" deploy@$TARGET_HOST_02 "/opt/deploy.sh ${SERVICE_NAME}" | |
- name: Deploy to demo server | |
env: | |
TARGET_HOST_02: dev.emailengine.app | |
NODE_ENV: production | |
SERVICE_NAME: emailengine-demo | |
id: deploy-demo | |
run: | | |
echo $GITHUB_SHA > commit.txt | |
./update-info.sh | |
npm install --omit=dev | |
tar czf /tmp/${SERVICE_NAME}.tar.gz --exclude .git . | |
scp -o "UserKnownHostsFile=/dev/null" -o "StrictHostKeyChecking=no" /tmp/${SERVICE_NAME}.tar.gz deploy@${TARGET_HOST_02}: | |
ssh -o "UserKnownHostsFile=/dev/null" -o "StrictHostKeyChecking=no" deploy@$TARGET_HOST_02 "/opt/deploy.sh ${SERVICE_NAME}" |