Skip to content

feat: add custom icons to content types in dir listing, add .log supp… #18

feat: add custom icons to content types in dir listing, add .log supp…

feat: add custom icons to content types in dir listing, add .log supp… #18

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