Skip to content

Update config

Update config #5

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: make build
- run: ls dist
- name: Upload
uses: appleboy/[email protected]
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USER }}
key: ${{ secrets.SSH_KEY }}
port: ${{ secrets.SSH_PORT }}
source: "./dist/*"
target: "/root/hellcord-private"
strip_components: 1
rm: true