From 37d076c33ebd675565dc90a1b02e7c963cd9782d Mon Sep 17 00:00:00 2001 From: Kyren223 Date: Sat, 28 Dec 2024 22:01:41 +0200 Subject: [PATCH] Added github actions for automatic deployments to kyren.codes website --- .github/workflows/deploy.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..1e0c874 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,30 @@ +name: Deploy Astro app to server + +on: + push: + branches: + - master + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: "23" + + - name: Install dependencies + run: npm install + + - name: Build the app + run: npm run build + + - name: Deploy to server + run: | + rsync -avz --delete dist/ website@185.170.113.195:/srv/website + env: + SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}