Skip to content

Commit

Permalink
Add deploy github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
komali2 committed Jul 5, 2023
1 parent a358155 commit ede2955
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 3 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
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 }}
API_URL: ${{ secrets.API_URL }}
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: Create env file
run: touch ${{ github.workspace}}/.env
- name: Write in api url
run: echo VUE_APP_API_URL="$API_URL" >> ${{ github.workspace }}/.env
- name: Write in postgres username
- name: Send updated source to our VPS
run: rsync -rav --delete -e 'ssh -p 3732' ${{ github.workspace }}/ "$SSH_USERNAME"@"$SSH_HOST":/home/"$SSH_USERNAME"/src/game-remix-guesser-frontend/
- name: Build new prod
run: ssh -p 3732 "${SSH_USERNAME}"@"${SSH_HOST}" "cd src/game-remix-guesser-frontend && nvm use 16 && npm install && npm run build"
- name: Move build files to web directory
run: ssh -p 3732 "${SSH_USERNAME}"@"${SSH_HOST}" "cd src/game-remix-guesser-frontend && cp -a build/. /home/www-data/grg/
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ node_modules
/backend/game-remix-guesser-a41630194599.json
/tests/e2e/videos/
/tests/e2e/screenshots/
build/


# local env files
Expand Down
6 changes: 3 additions & 3 deletions vue.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
devServer: {
proxy: 'http://localhost:8000'
proxy: 'http://localhost:8000',
},
outputDir: '../backend/app/static',
}
outputDir: 'build',
};

0 comments on commit ede2955

Please sign in to comment.