From 0166b2206c8e0eb75420ba318dc7d3280d643fb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Mur=C3=A7a?= Date: Tue, 11 Mar 2025 16:57:07 -0300 Subject: [PATCH] Delete github action --- .github/workflows/deploy.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index db52f3c..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Deploy - -on: - push: - branches: ["main"] - -jobs: - build-and-deploy: - runs-on: ubuntu-latest - - env: - SSH_KEY: ${{secrets.SSH_KEY}} - - steps: - - uses: actions/checkout@v3 - - name: Use Node.js 16 - uses: actions/setup-node@v3 - with: - node-version: 16 - cache: "npm" - - run: npm install - - run: npm run build - - run: mkdir ~/.ssh - - run: echo "$SSH_KEY" >> ~/.ssh/id_rsa_embroideryviewer - - run: chmod 400 ~/.ssh/id_rsa_embroideryviewer - - run: echo -e "Host embroideryviewer\n\tUser embroideryviewer\n\tHostname 45.76.5.44\n\tIdentityFile ~/.ssh/id_rsa_embroideryviewer\n\tStrictHostKeyChecking No" >> ~/.ssh/config - - run: rsync -avz --progress dist/ embroideryviewer:web/prod