Skip to content

Made Header More Social Media-y #6

Made Header More Social Media-y

Made Header More Social Media-y #6

Workflow file for this run

name: Build & Deploy
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Deploy NodeJS app
uses: appleboy/ssh-action@v0.1.2
with:
host: ${{secrets.SSH_HOST}} # IP address of the server you wish to ssh into
key: ${{secrets.SSH_KEY}} # Private or public key of the server
username: ${{ secrets.SSH_USERNAME }} # User of the server you want to ssh into
# passphrase: ${{ secrets.SSH_PASSPHRASE }}
script: |
mkdir test
cd test
git clone https://github.com/fairfield-programming/charter
echo 'Deployment successful to Digital Ocean'