diff --git a/.github/workflows/cicd.yaml b/.github/workflows/cicd.yaml index 8dce144..824bda2 100644 --- a/.github/workflows/cicd.yaml +++ b/.github/workflows/cicd.yaml @@ -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 }} diff --git a/atomi_release.yaml b/atomi_release.yaml index 452f62f..4acd80b 100644 --- a/atomi_release.yaml +++ b/atomi_release.yaml @@ -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 @@ -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 diff --git a/sdks/node/src/main.ts b/sdks/node/src/main.ts index 7b42f3c..d9b15fe 100644 --- a/sdks/node/src/main.ts +++ b/sdks/node/src/main.ts @@ -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(); @@ -187,6 +188,7 @@ export { }; export type { + GlobType, ICyanTemplate, ICyanExtension, ICyanProcessor,