Skip to content

Commit 3778ee3

Browse files
committed
feat: Release GH actions by removing dryRun flag
1 parent b1f2acd commit 3778ee3

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
"format:check": "npm run format:base -- --check",
1515
"release": "standard-version",
1616
"release:dryrun": "npm run test && npm publish --dry-run",
17-
"release:publish": "npm run test && npm publish",
1817
"release:trigger": "./scripts/trigger-release.sh"
1918
},
2019
"repository": {

scripts/ci/lib/publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ echo "--> Releasing version ${VERSION}"
1515

1616
echo "--> Releasing artifacts"
1717
echo " Publishing jest-pact@${VERSION}..."
18-
npm publish --tag latest --dry-run
18+
npm publish --tag latest
1919
echo " done!"

0 commit comments

Comments
 (0)