Skip to content

Test cicd

Test cicd #25

Workflow file for this run

name:
Deploy to Dev
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Install sshpass
run: sudo apt-get install -y sshpass
- name: SSH into server
run: sshpass -p ${{ secrets.SSH_PASSWORD }} ssh [email protected] 'echo hello'