From ca914015071258145461d9493afc44ba13363fed Mon Sep 17 00:00:00 2001 From: Alex Williams Date: Fri, 7 Jun 2024 11:53:35 +0100 Subject: [PATCH] Removing Autodeploy from this branch, it was merged in by github --- .github/workflows/autodeploy.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/autodeploy.yml diff --git a/.github/workflows/autodeploy.yml b/.github/workflows/autodeploy.yml deleted file mode 100644 index 977f13f1..00000000 --- a/.github/workflows/autodeploy.yml +++ /dev/null @@ -1,32 +0,0 @@ -# This is a basic deployment workflow triggered by pushes to the alpha branch. - -name: Auto-Deploy - -# Controls when the action will run. Workflow runs when the alpha branch receives a push event -on: - workflow_dispatch: - inputs: - tags: - description: "Manually Run Workflow" - push: - branches: - - alpha - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - downloadcode: - runs-on: self-hosted - steps: - - shell: bash - run: | - rm -Rf ./coriolis - rm -Rf ./coriolis-data - git clone https://github.com/alex-williams/coriolis.git --single-branch --branch alpha - git clone https://github.com/alex-williams/coriolis-data.git --single-branch --branch alpha - cd coriolis-data - npm install - npm start - cd ../coriolis - npm install - npm run build - sudo -u www-data cp -r ./build/* /var/www/newdisk/coriolis.brighter-applications.co.uk/ \ No newline at end of file