From 0e06ac8d12590425621ad17d0c14e9b25bc15a2d Mon Sep 17 00:00:00 2001 From: sripwoud Date: Wed, 2 Oct 2024 15:09:19 +0200 Subject: [PATCH] chore: trigger release workflow --- .github/workflows/release.yml | 2 -- scripts/publish.ts | 10 +++++----- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 89ebab83d..b4bc07ed3 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() }