From 1d02a1be4a97e459f35d4a22461c1f5cb28fd418 Mon Sep 17 00:00:00 2001 From: Harish Date: Sun, 8 Mar 2026 13:31:44 +0530 Subject: [PATCH] fix: resolve GitHub Actions permissions and Pages enablement --- .github/workflows/ci.yml | 2 ++ .github/workflows/pages.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 87326c0..78804a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,6 +75,8 @@ jobs: runs-on: ubuntu-latest needs: [test, docker] if: github.ref == 'refs/heads/main' && github.event_name == 'push' && !contains(github.event.head_commit.message, '[skip ci]') + permissions: + contents: write steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 5ae3500..5b0c8d5 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -37,6 +37,8 @@ jobs: run: npm run build - name: Setup Pages uses: actions/configure-pages@v4 + with: + enablement: true - name: Upload artifact uses: actions/upload-pages-artifact@v3 with: