Skip to content

refactor: update readme with updated info, update default trustscore_… #15

refactor: update readme with updated info, update default trustscore_…

refactor: update readme with updated info, update default trustscore_… #15

Workflow file for this run

name: Deploy to Nest
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Make and restart the faucet example site on Nest via SSH
uses: appleboy/ssh-action@v1.0.3
with:
host: hackclub.app
username: ${{ secrets.SSH_USER }}
key: ${{ secrets.SSH_KEY }}
script: |
cd ~/faucet
git switch main
git pull
make || exit 1
systemctl --user restart faucet.service || exit 1