Adding workflow for autodeploy

This commit is contained in:
Alex Williams
2024-05-17 12:31:32 +01:00
parent f885fde04f
commit cd68199a41

29
.github/workflows/autodeploy.yml vendored Normal file
View File

@@ -0,0 +1,29 @@
# 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:
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: |
git clone https://github.com/alex-williams/coriolis-data.git
cd coriolis-data
git checkout alpha
npm install
cd ../
git clone https://github.com/alex-williams/coriolis.git
cd ./coriolis
git checkout alpha
npm install
npm run build
sudo -u www-data cp -r ./build/* /var/www/newdisk/coriolis.brighter-applications.co.uk/