From 3f5ccb687017186eb29b8b18c7fdce33daee1f70 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Tue, 12 Nov 2024 12:48:12 -0600 Subject: [PATCH 1/4] fix: publish to preview --- .github/workflows/onRelease.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/onRelease.yml b/.github/workflows/onRelease.yml index d9102e0..cfc004f 100644 --- a/.github/workflows/onRelease.yml +++ b/.github/workflows/onRelease.yml @@ -27,7 +27,7 @@ jobs: with: ctc: true sign: true - tag: ${{ needs.getDistTag.outputs.tag || 'latest' }} + tag: ${{ needs.getDistTag.outputs.tag || 'preview' }} githubTag: ${{ github.event.release.tag_name || inputs.tag }} secrets: inherit From f15369caf48c3e66ecfd53a0559061ee84c56cdc Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Tue, 12 Nov 2024 13:06:28 -0600 Subject: [PATCH 2/4] chore: disable ctc and signing on library --- .github/workflows/onRelease.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/onRelease.yml b/.github/workflows/onRelease.yml index cfc004f..284f23e 100644 --- a/.github/workflows/onRelease.yml +++ b/.github/workflows/onRelease.yml @@ -25,9 +25,7 @@ jobs: uses: salesforcecli/github-workflows/.github/workflows/npmPublish.yml@main needs: [getDistTag] with: - ctc: true - sign: true - tag: ${{ needs.getDistTag.outputs.tag || 'preview' }} + tag: ${{ needs.getDistTag.outputs.tag || 'preview ' }} githubTag: ${{ github.event.release.tag_name || inputs.tag }} secrets: inherit From c79f289b3c94169055d9bb3a63360cf88c5ffbd2 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Tue, 12 Nov 2024 13:18:18 -0600 Subject: [PATCH 3/4] chore: temp disable nuts --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 556667f..0415f8c 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "prepack": "sf-prepack", "prepare": "sf-install", "test": "wireit", - "test:nuts": "nyc mocha \"**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel", + "test:nuts": "echo 'No tests to run'", "test:only": "wireit" }, "publishConfig": { From 94889af0422e858d61fec3cc488ef8aedb2d5c95 Mon Sep 17 00:00:00 2001 From: Willhoit Date: Tue, 12 Nov 2024 13:19:36 -0600 Subject: [PATCH 4/4] chore: spacing --- .github/workflows/onRelease.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/onRelease.yml b/.github/workflows/onRelease.yml index 284f23e..e07d29c 100644 --- a/.github/workflows/onRelease.yml +++ b/.github/workflows/onRelease.yml @@ -25,7 +25,7 @@ jobs: uses: salesforcecli/github-workflows/.github/workflows/npmPublish.yml@main needs: [getDistTag] with: - tag: ${{ needs.getDistTag.outputs.tag || 'preview ' }} + tag: ${{ needs.getDistTag.outputs.tag || 'preview' }} githubTag: ${{ github.event.release.tag_name || inputs.tag }} secrets: inherit