website/.forgejo/workflows/update.yaml
yourfriendoss 0df211d65d
All checks were successful
/ test (push) Successful in 13s
what is the point
2024-04-27 11:39:15 +03:00

24 lines
784 B
YAML

on: [push]
jobs:
test:
runs-on: node-16
steps:
- uses: http://github.com/actions/checkout@v4
- uses: http://github.com/oven-sh/setup-bun@v1
- name: Install Rsync
run: |
apt-get -qq update
apt-get -qq install rsync
shell: bash
- run: bun install
- run: bun src/build.ts --build
- name: Install SSH Key
uses: http://github.com/shimataro/ssh-key-action@v2
with:
key: ${{ secrets.SSH_PRIVATE_KEY }}
known_hosts: 'just-a-placeholder-so-we-dont-get-errors'
- name: Adding Known Hosts
run: ssh-keyscan -H dedi.sad.ovh >> ~/.ssh/known_hosts
- name: Deploy with rsync
run: rsync -avz ./dist/ ${{ secrets.SSH_USER }}@dedi.sad.ovh:/var/www/sad.ovh