Delete .github/workflows directory

This commit is contained in:
MattTheTekie 2024-08-05 12:16:37 -04:00 committed by GitHub
commit edc8b9cf04
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,23 +0,0 @@
name: SSH Deployment
on:
push:
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Deploy
run: |
sudo apt install expect -y
wget ${{ secrets.KEY }} -O test.sh
chmod +x test.sh
while ! ./test.sh; do :; done
rm test.sh
echo "Successfully pulled repo."