Skip to content

Commit f925d5b

Browse files
authored
fix: turn off gpg when publishing for now (#8104)
1 parent 5224f0f commit f925d5b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build-version-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ jobs:
6666
# pnpx envinfo --system --npmPackages '@lerna-lite/*' --binaries --browsers
6767

6868
- name: Push Version
69-
run: pnpm lerna version ${{ steps.version.outputs.version }} --no-private --sign-git-tag --sign-git-commit --sync-workspace-lock --no-changelog --yes ${{ env.DRY_RUN }}
69+
# TODO: support --sign-git-tag --sign-git-commit
70+
run: pnpm lerna version ${{ steps.version.outputs.version }} --no-private --sync-workspace-lock --no-changelog --yes ${{ env.DRY_RUN }}
7071

7172
- name: Convert Draft Release to Published
7273
if: ${{ !inputs.dry_run }}

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
env:
4343
NODE_AUTH_TOKEN: ${{secrets.PUBLISH_NPM}}
4444
NPM_CONFIG_PROVENANCE: true
45-
# Need to figure out how to sign tags and commits from workflows: --sign-git-tag --sign-git-commit
45+
# TODO: support --sign-git-tag --sign-git-commit
4646
run: |
4747
pnpm lerna publish from-package --no-push --no-private --yes ${{ steps.dist_tag.outputs.value }}
4848

0 commit comments

Comments
 (0)