From b789655ce95d227376c449ea532cbdbf86fc5af5 Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Sun, 17 May 2026 22:53:13 +0700 Subject: [PATCH] fix: register new github public remote for selfbot submodule and update workflow to checkout recursively --- .github/workflows/deploy.yml | 2 ++ .gitmodules | 2 +- Dockerfile | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ad694d4..96fc7ee 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -12,6 +12,8 @@ jobs: steps: - name: Checkout Repository uses: actions/checkout@v4 + with: + submodules: recursive - name: Deploy to VPS env: diff --git a/.gitmodules b/.gitmodules index 9080ce2..8b8aae5 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,4 +1,4 @@ [submodule "vendor/discord.js-selfbot-v13"] path = vendor/discord.js-selfbot-v13 - url = ssh://git@43.134.105.109:22222/exceed/discord.js-selfbot.git + url = https://github.com/MythEclipse/discord.js-selfbot-v13.git diff --git a/Dockerfile b/Dockerfile index be1f94e..3f118aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,6 +21,7 @@ WORKDIR /app # Install dependencies first for better caching COPY package.json pnpm-lock.yaml pnpm-workspace.yaml* ./ +COPY vendor/discord.js-selfbot-v13/package.json ./vendor/discord.js-selfbot-v13/package.json RUN pnpm install --frozen-lockfile # Copy the rest of the application