From 1a9f721e9795aaed0cca22cf1316545a047d9edd Mon Sep 17 00:00:00 2001 From: Leilukin Date: Sat, 19 Apr 2025 22:58:18 +0800 Subject: [PATCH] Remove Gitea actions --- .gitea/workflows/hostinger.yml | 36 ---------------------------------- 1 file changed, 36 deletions(-) delete mode 100644 .gitea/workflows/hostinger.yml diff --git a/.gitea/workflows/hostinger.yml b/.gitea/workflows/hostinger.yml deleted file mode 100644 index 8f3a563c..00000000 --- a/.gitea/workflows/hostinger.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Deploy to Hostinger - -on: - push: - branches: - - main - -jobs: - build: - runs-on: ubuntu-latest - name: Build and Push - steps: - - name: git-checkout - uses: actions/checkout@v4 - - - name: Set Up Bun - uses: oven-sh/setup-bun@v2 - with: - bun-version: latest - - - name: Install all dependencies - run: bun install - - - name: Build - run: bun run build - - - name: SSH Deploy to Hostinger - uses: easingthemes/ssh-deploy@main - with: - SSH_PRIVATE_KEY: ${{ secrets.HOSTINGER_SSH_PRIVATE_KEY }} - ARGS: "--delete" - SOURCE: "_site/" - REMOTE_HOST: ${{ secrets.REMOTE_HOST }} - REMOTE_USER: ${{ secrets.REMOTE_USER }} - TARGET: ${{ secrets.REMOTE_TARGET }} - EXCLUDE: "/node_modules/ /host/"