Skip to content

update package lock #11

update package lock

update package lock #11

Workflow file for this run

name: Deploy
on:
push:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Deploy app
uses: appleboy/ssh-action@v0.1.2
with:
host: ${{secrets.SSH_HOST}}
key: ${{secrets.SSH_KEY}}
username: ${{secrets.SSH_USERNAME}}
script: |
set -e
appName=oculus-deals-spider-bot
appDir=/opt/$appName
tempDir=$(mktemp -d /tmp/oculus-deals-spider-bot.XXXXXXXXX)
rm -rf "$tempDir" # Remove existing temp directory if it exists
mkdir -p "$tempDir" # Recreate temp directory
cd $tempDir
git clone https://github.com/introkun/oculus-deals-spider-bot.git .
echo "Installing app dependencies"
export NVM_DIR=~/.nvm
source ~/.nvm/nvm.sh
npm ci
echo "Writing config wile"
echo "${{secrets.CONFIG}}" > config/production.json
echo "Renaming current app folder"
mv $appDir $appDir.$(date +\%Y\%m\%d\%H\%M\%S)
echo "Renaming new app to current"
cd /opt
mv $tempDir $appDir