summaryrefslogtreecommitdiff
path: root/.gitea/workflows/deploy.yaml
blob: 0385de56e8be683adef2a09137c01fc2f4b8c02a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: Deploying Static Site
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]

jobs:
  Build:
    container: alpine:latest
    steps:
      - name: Install dependencies
        run: apk add nodejs git openssh
      - name: Check out repository code
        uses: actions/checkout@v4
      - name: Write SSH keys
        run: |
          install -m 600 -D /dev/null ~/.ssh/id_ed25519
          echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519
          ssh-keyscan -H 192.168.1.113 > ~/.ssh/known_hosts
      - name: Copy built site to server
        run: |
          ssh git@192.168.1.113 "rm -rf /var/www/soaos.dev && mkdir /var/www/soaos.dev"
          scp -sr public/. git@192.168.1.113:/var/www/soaos.dev