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