retype
retype copied to clipboard
adding license to wallet prevents building of non-pro sites
Hi, as soon as I add a license to the Retype wallet I can no longer build static sites for other domains that do not use any pro-feature and do not exceed the page count limit.
I now get the error message
ERROR: No valid secret found in your wallet for the "url" config host: ...
Hi @fredahrens. Thanks for the report.
Can you confirm which version of Retype you are using by running the command retype --version?
Hi, it's v2.4. Best regards Fred Ahrens
sent via my mobile account
From: Geoffrey McGill @.> Sent: Thursday, May 18, 2023 2:22:32 PM To: retypeapp/retype @.> Cc: Fred Ahrens (ZeeBORN) @.>; Mention @.> Subject: Re: [retypeapp/retype] adding license to wallet prevents building of non-pro sites (Issue #549)
Hi @fredahrenshttps://github.com/fredahrens. Thanks for the report.
Can you confirm which version of Retype you are using by running the command retype --version?
— Reply to this email directly, view it on GitHubhttps://github.com/retypeapp/retype/issues/549#issuecomment-1552974498, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AE3PTLD3L57IKVS6F5IMJFTXGYIARANCNFSM6AAAAAAYGI4L2I. You are receiving this because you were mentioned.Message ID: @.***>
I have reproduced and we are looking into this issue.
The steps required to reproduce:
- Add a valid key to your wallet using
retype wallet --add key-here - Create a new project and set
url: example.comin theretype.ymlproject config file - Run the command
retype buildon the new project - Error is thrown
ERROR: No valid secret found in your wallet for the "url" config host: "example.com".
If retype watch is used, the error is not thrown.
As well, if using the GitHub Action, the error would not be thrown during the automated build process on GitHub.
The error should only be thrown when calling retype build on your local development machine where a key is installed that does not match the url of the project you are building.
Hi @fredahrens. As a temp workaround, the following command should build your project:
retype build --secret ""
We are working on a fix so the including --secret "" would not be required.
Hi @geoffreymcgill , I can confirm, passing an empty secret as parameter works without problems. Thank you.