ci: add CI file
All checks were successful
Deploy website to alys.phundrak.com / build (push) Successful in 20s

This commit is contained in:
2024-03-09 18:10:03 +01:00
parent cb09d9b4c7
commit 82c2f58a1f
6 changed files with 59 additions and 19 deletions

View File

@@ -0,0 +1,38 @@
name: Deploy website to alys.phundrak.com
on:
push:
branches: [main]
workflow_dispatch:
concurrency:
group: deploy
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Enable corepack and yarn
run: corepack enable
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build with VitePress
run: yarn build
- name: Deploy on the web
uses: appleboy/scp-action@v0.1.7
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
port: ${{ secrets.PORT }}
source: docs/.vitepress/dist/*
target: ${{ secrets.DESTPATH }}
strip_components: 3