diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 489be0a0..6ffd9aa9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: - run: | npm install npm test - SEGMENT_KEY="${{ secrets.SEGMENT_KEY }}" npm run build:cli + SEGMENT_KEY=${{ secrets.SEGMENT_KEY }} npm run build:cli npm pack npm publish --access public env: diff --git a/package.json b/package.json index 62a72e82..ded7df17 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "superplate-cli", - "version": "1.4.2", + "version": "1.4.3", "description": "The frontend boilerplate with superpowers", "license": "MIT", "repository": { diff --git a/src/saofile.ts b/src/saofile.ts index b5bfbc43..47db2a9a 100644 --- a/src/saofile.ts +++ b/src/saofile.ts @@ -39,7 +39,7 @@ const saoConfig: GeneratorConfig = { { type: "input", name: "name", - message: process.env.SEGMENT_KEY, + message: "What will be the name of your app", default: appName, }, ...(BinaryHelper.CanUseYarn()