From be4a197c00f6432612a45ae8abf1a8b80f70dc98 Mon Sep 17 00:00:00 2001 From: Ramkrishna <144999854+ramsquishna@users.noreply.github.com> Date: Thu, 23 Apr 2026 22:11:27 +0530 Subject: [PATCH 1/2] Add Docker Buildx setup step to workflow Added a step to set up Docker Buildx in the workflow. --- .github/workflows/docker-publish.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 17b2d71c..77f26c82 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -22,6 +22,10 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + # ✅ FIX: Add this step + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Log into registry ${{ env.REGISTRY }} if: github.event_name != 'pull_request' uses: docker/login-action@v3 From 9350801a26d0a937374094676c5e1a29dbefba21 Mon Sep 17 00:00:00 2001 From: Ramkrishna <144999854+ramsquishna@users.noreply.github.com> Date: Thu, 23 Apr 2026 22:14:49 +0530 Subject: [PATCH 2/2] Update roadmap.txt --- roadmap.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/roadmap.txt b/roadmap.txt index d1ebec84..c53f02bb 100644 --- a/roadmap.txt +++ b/roadmap.txt @@ -146,3 +146,4 @@ Database Abstraction Layer Notes - This project is modular by feature area: commands -> handlers -> services -> utils - bot.js is the single source of truth for embed theming/colors and core bot config +- We might not have everything done as mentioned in the roadmap.txt or some new features which is not mentioned in roadmap.txt