-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
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
Use a custom build of ddev to debug yaml corruption errors #453
Conversation
if [ "${{ inputs.replace-ddev-binary-url }}" != "" ]; then | ||
echo "Replacing ddev binary from ${{ inputs.replace-ddev-binary-url }}" | ||
curl --silent --location --output /tmp/ddev.zip "${{ inputs.replace-ddev-binary-url }}" | ||
sudo unzip -o -d /usr/bin /tmp/ddev.zip | ||
sudo chmod +x /usr/bin/ddev | ||
ddev --version | ||
fi | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since I was able to reproduce this so easily in this PR, we won't want to merge this whole PR. @justafish what do you think about adding support for overriding ddev like this as a feature?
Also Randy says:
Note that you're using an obsolete technique for key install, Run curl https://apt.fury.io/drud/gpg.key | sudo apt-key add -
Also, you're using the old drud location, https://apt.fury.io/drud
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@deviantintegral sounds good! 👍
#528
- name: Install DDEV | ||
uses: ./drainpipe/scaffold/github/actions/common/ddev | ||
with: | ||
git-name: Drainpipe Bot | ||
git-email: [email protected]# |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@justafish is this a typo we should fix?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes 😄 #527
Closing as this was fixed in ddev/ddev#5893 |
@justafish what did you think of my two notes above, on the email address and updating the ddev install steps? |
https://github.com/orgs/ddev/discussions/5470