From 6f5e2457e9250f846062d3218147be1f639194c4 Mon Sep 17 00:00:00 2001 From: Andras Nemeseri Date: Sun, 24 Mar 2024 20:32:24 -0700 Subject: [PATCH] Deploy script removed --- .github/deploy.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/deploy.yml diff --git a/.github/deploy.yml b/.github/deploy.yml deleted file mode 100644 index cd1700d..0000000 --- a/.github/deploy.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Deploy on nemeseri.com -on: [push] -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - name: Copy repository contents via scp - uses: appleboy/scp-action@master - env: - HOST: ${{ secrets.HOST }} - USERNAME: ${{ secrets.USERNAME }} - PORT: ${{ secrets.PORT }} - KEY: ${{ secrets.SSHKEY }} - with: - source: "." - target: "/www/family-site-reactjs" - - name: Executing remote command - uses: appleboy/ssh-action@master - with: - host: ${{ secrets.HOST }} - USERNAME: ${{ secrets.USERNAME }} - PORT: ${{ secrets.PORT }} - KEY: ${{ secrets.SSHKEY }} - script: npm install && npm build