Skip to content

Remove automatic conflict resolution step from deploy workflow #62

Remove automatic conflict resolution step from deploy workflow

Remove automatic conflict resolution step from deploy workflow #62

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: deploy
on:
push:
branches: [ main ]
jobs:
deploy:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [15.x]
steps:
- name: SSH Deploy
uses: garygrossgarten/github-action-ssh@release
with:
command: cd ${{ secrets.FOLDER }} && git pull origin main
host: ${{ secrets.HOST }}
username: ${{ secrets.USER_NAME }}
privateKey: ${{ secrets.PRIVATE_KEY}}