From edc8b9cf04988b484fab1a2ea85caf76bfd70220 Mon Sep 17 00:00:00 2001 From: MattTheTekie <94870997+MattTheTekie@users.noreply.github.com> Date: Mon, 5 Aug 2024 12:16:37 -0400 Subject: [PATCH] Delete .github/workflows directory --- .github/workflows/push.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/push.yml diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml deleted file mode 100644 index 0716c2b..0000000 --- a/.github/workflows/push.yml +++ /dev/null @@ -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."