Skip to content

Commit

Permalink
Add github deploy action to 508 vps
Browse files Browse the repository at this point in the history
  • Loading branch information
komali2 committed Jul 20, 2023
1 parent a17468f commit b53a2dc
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Deploy Prod

# -----
# This workflow will run whenever changes are pushed to main
# -----

on:
push:
branches:
- main
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
SSH_HOST: ${{ secrets.SSH_HOST }}
SSH_PORT: ${{ secrets.SSH_PORT }}
SSH_USERNAME: ${{ secrets.SSH_USERNAME }}
jobs:
deploy:
name: Deploy
environment: prod
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- uses: actions/download-artifact@v2
- name: Copy bleck into id rsa
run: install -m 600 -D /dev/null ~/.ssh/id_rsa
- name: See if env vars propagated
run: echo "$SSH_HOST"
- name: Copy private key into keyfile
run: echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa
- name: Scan into known hosts
run: ssh-keyscan -H -p "$SSH_PORT" "$SSH_HOST" > ~/.ssh/known_hosts
- name: Send updated source to our VPS
run: rsync -rav --delete -e 'ssh -i ~/.ssh/id_rsa -p 3732' ${{ github.workspace }}/ "$SSH_USERNAME"@"$SSH_HOST":/home/"$SSH_USERNAME"/src/quick-taiwan-conversions/
- name: Build new prod
run: ssh -p 3732 "${SSH_USERNAME}"@"${SSH_HOST}" "cd src/quick-taiwan-conversions && npm install && npm run build"
- name: Move build files to web directory
run: ssh -p 3732 "${SSH_USERNAME}"@"${SSH_HOST}" "cd src/quick-taiwan-conversions && rsync -a --chown=${SSH_USERNAME}:www-data dist/. /home/www-data/converter/"

0 comments on commit b53a2dc

Please sign in to comment.