From 99dee8f3293dd5aa10ae3db7071661abaf20e1ae Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Thu, 16 Jan 2025 12:23:47 +0100 Subject: [PATCH] Meta: update release action to v2 Updates the release template to use the new npm release v2 action, which relies on the GitHub bot instead of a personal PAT. --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d0331041..cded89c8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,10 +15,11 @@ on: jobs: from-template: - uses: Unleash/.github/.github/workflows/npm-release.yml@v1.2.0 + uses: Unleash/.github/.github/workflows/npm-release.yml@v2.0.0 with: version: ${{ github.event.inputs.version }} tag: ${{ github.event.inputs.tag }} secrets: - GH_ACCESS_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} NPM_ACCESS_TOKEN: ${{ secrets.NPM_TOKEN }} + UNLEASH_BOT_APP_ID: ${{ secrets.UNLEASH_BOT_APP_ID }} + UNLEASH_BOT_PRIVATE_KEY: ${{ secrets.UNLEASH_BOT_PRIVATE_KEY }}