From 67f6f70ce687eaf02c3e9b74685a4e5fddac9287 Mon Sep 17 00:00:00 2001 From: Ben Elan Date: Tue, 28 May 2024 23:50:30 -0700 Subject: [PATCH] ci(assets): stringify list of paths for released packages --- .github/workflows/deploy-latest.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-latest.yml b/.github/workflows/deploy-latest.yml index 4bf8d49bb64..fe0666074ea 100644 --- a/.github/workflows/deploy-latest.yml +++ b/.github/workflows/deploy-latest.yml @@ -60,7 +60,8 @@ jobs: git commit -m "build: update types and package-lock" || true npm run publish:latest - npm run util:upload-release-assets -- "${{ steps.release.outputs.paths_released }}" + npm run util:upload-release-assets -- "$RELEASED_PATHS" env: + RELEASED_PATHS: ${{ toJSON(steps.release.outputs.paths_released) }} NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} NPM_CONFIG_PROVENANCE: true