From 8abaf4edad2779916efed31b3b6f2f85fb7476f2 Mon Sep 17 00:00:00 2001 From: SnskArora Date: Sat, 22 Mar 2025 15:19:43 +0530 Subject: [PATCH] auth check --- .github/workflows/ci.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4ae2dc4..f3fd959 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -28,10 +28,20 @@ jobs: run: make build env: VERSION: latest + + - name: Generate token + id: generate_token + uses: tibdex/github-app-token@v1 + with: + app_id: ${{ secrets.APP_ID }} + private_key: ${{ secrets.APP_PRIVATE_KEY }} + - name: Push run: make push env: VERSION: latest + GH_TOKEN: ${{ steps.generate_token.outputs.token }} + - name: Test run: make test - name: Lint