From d0c6d6bd4d51f09f87846fb78fbbfc28288ccf8e Mon Sep 17 00:00:00 2001 From: Patrick Sullivan Date: Wed, 4 Dec 2024 09:18:18 +0000 Subject: [PATCH] fix(monorepo): Resolved issue with missing env values in CI workflow action --- .github/workflows/ci.yml | 9 +++++++++ packages/hooks/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b10d8505..9032833b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,15 @@ on: - canary - experimental +env: + CI: true + STORM_REPOSITORY: ${{ github.repositoryUrl }} + STORM_WORKSPACE_ROOT: ${{ github.workspace }} + GITHUB_ACTOR: ${{ github.actor }} + GITHUB_TOKEN: ${{ github.token }} + NPM_TOKEN: ${{ secrets.STORM_BOT_NPM_TOKEN }} + CARGO_REGISTRY_TOKEN: ${{ secrets.STORM_BOT_CARGO_TOKEN }} + jobs: start: name: "Send in process notification" diff --git a/packages/hooks/package.json b/packages/hooks/package.json index ff4d431d..47bfb3c1 100644 --- a/packages/hooks/package.json +++ b/packages/hooks/package.json @@ -2,7 +2,7 @@ "name": "@storm-stack/hooks", "version": "0.25.0", "type": "module", - "description": "A collection of React hooks used by Storm Software in various packages/applications.", + "description": "A collection of React hooks used by Storm Software in various client libraries and applications.", "repository": { "type": "github", "url": "https://github.com/storm-software/storm-stack.git",