Skip to content

Commit

Permalink
fix(node): incorrect manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
kirinnee committed Nov 8, 2023
1 parent 92f7ab3 commit 2f1919a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
GITHUB_SHA: ${{ github.sha }}
GITHUB_BRANCH: ${{ env.GITHUB_REF_SLUG_URL }}

RELEASE: "true"
RELEASE: "false"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

NPM_API_KEY: ${{ secrets.NPM_API_KEY }}
Expand Down
3 changes: 2 additions & 1 deletion atomi_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ plugins:

- module: "@semantic-release/git"
config:
message: "release: ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
message: "release(no-release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
assets:
- sdks/dotnet/sulfone-helium/sulfone-helium.csproj
- sdks/node/package.json
Expand All @@ -42,6 +42,7 @@ plugins:
- module: "@semantic-release/exec"
config:
publishCmd: scripts/ci/publish.sh

- module: "@semantic-release/github"

# Angular Conventional Commit Example: https://github.com/angular/angular/blob/22b96b9/CONTRIBUTING.md#-commit-message-guidelines
Expand Down
2 changes: 2 additions & 0 deletions sdks/node/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ import type {
SelectQ,
TextQ,
} from "./domain/core/question.js";
import { GlobType } from "./domain/core/cyan.js";

function createApp(): Application {
const app = express();
Expand Down Expand Up @@ -187,6 +188,7 @@ export {
};

export type {
GlobType,
ICyanTemplate,
ICyanExtension,
ICyanProcessor,
Expand Down

0 comments on commit 2f1919a

Please sign in to comment.