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