We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i have used https://pnpm.io/next/continuous-integration#azure-pipelines to create my Pipelines but i now get the error Internal Error: Cannot find matching keyid: . The pipeline was approximately 10 days old when the error occurred.
Internal Error: Cannot find matching keyid:
i have found that the following change fixes the issue (from https://stackoverflow.com/questions/79411275/after-heroku-restart-pnpm-error-cannot-find-matching-keyid)
original
- script: | corepack enable corepack prepare pnpm@latest-10 --activate pnpm config set store-dir $(pnpm_config_cache) displayName: "Setup pnpm"
fix
- script: | npm install -g corepack@latest corepack enable corepack prepare pnpm@latest-10 --activate pnpm config set store-dir $(pnpm_config_cache) displayName: "Setup pnpm"
Q: Is this even the correct fix?
The text was updated successfully, but these errors were encountered:
This is one possible fix. The second option is to disable the integrity check.
Sorry, something went wrong.
No branches or pull requests
i have used https://pnpm.io/next/continuous-integration#azure-pipelines to create my Pipelines but i now get the error
Internal Error: Cannot find matching keyid:
. The pipeline was approximately 10 days old when the error occurred.i have found that the following change fixes the issue (from https://stackoverflow.com/questions/79411275/after-heroku-restart-pnpm-error-cannot-find-matching-keyid)
original
fix
Q: Is this even the correct fix?
The text was updated successfully, but these errors were encountered: