This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

feat: add deploy workflow

+17
+16
.github/workflows/deploy.yaml
··· 1 + on: 2 + push: 3 + branches: 4 + - main 5 + jobs: 6 + deploy: 7 + runs-on: ubuntu-latest 8 + steps: 9 + - name: file commands 10 + uses: appleboy/ssh-action@v1 11 + with: 12 + host: hackclub.app 13 + username: kierank 14 + key: ${{ secrets.SSH_KEY }} 15 + port: 22 16 + script_path: update.sh
+1
update.sh
··· 1 + cd ~/takes 1 2 git restore bun.lock 2 3 git fetch --all 3 4 git reset --hard origin/main