From 4d4c53fc86d43b2d302b227bafb7aeaa061ff233 Mon Sep 17 00:00:00 2001 From: mcafaro Date: Fri, 31 Jul 2026 12:01:06 -0400 Subject: [PATCH] Use app token to publish --- .github/workflows/publish.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5a89cf3..9d3446d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,7 +12,14 @@ jobs: outputs: tag: ${{ steps.update-package-version.outputs.version }} steps: + - uses: actions/create-github-app-token@fee1f7d63c2ff003460e3d139729b119787bc349 # v2.2.2 + id: app-token + with: + app-id: ${{ vars.RELEASE_APP_ID }} + private-key: ${{ secrets.RELEASE_APP_KEY }} - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + with: + token: ${{ steps.app-token.outputs.token }} - name: Configure git run: | git config user.name 'Release Action'