From 925ebbec4a0d90567376367001d1e6d6ab88f7d2 Mon Sep 17 00:00:00 2001 From: Dillon DuPont Date: Fri, 14 Nov 2025 17:12:59 -0500 Subject: [PATCH] Fix missing env in create-release action --- .github/workflows/npm-publish-cli.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/npm-publish-cli.yml b/.github/workflows/npm-publish-cli.yml index 4093130a..804b2bb8 100644 --- a/.github/workflows/npm-publish-cli.yml +++ b/.github/workflows/npm-publish-cli.yml @@ -124,6 +124,8 @@ jobs: - name: Create Release id: create_release uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ steps.version.outputs.tag }} release_name: CUA CLI ${{ steps.version.outputs.version }}