diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6188a9600..be96e31e1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,8 +5,6 @@ permissions: on: push: - tags: - - "v*" jobs: release: diff --git a/scripts/publish.ts b/scripts/publish.ts index 08f9adecf..9bf9446c6 100755 --- a/scripts/publish.ts +++ b/scripts/publish.ts @@ -20,11 +20,11 @@ async function maybePushToSoldeer() { } async function main() { - execSync(`yarn build:libraries`, { stdio: "inherit" }) - execSync(`yarn clean:cli-templates`) - execSync(`yarn workspaces foreach -A --no-private npm publish --tolerate-republish --access public`, { - stdio: "inherit" - }) + // execSync(`yarn build:libraries`, { stdio: "inherit" }) + // execSync(`yarn clean:cli-templates`) + // execSync(`yarn workspaces foreach -A --no-private npm publish --tolerate-republish --access public`, { + // stdio: "inherit" + // }) await maybePushToSoldeer() }