-
Notifications
You must be signed in to change notification settings - Fork 34
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
Deploy To Azure Using CLI #150
Conversation
- name: Login via Azure CLI | ||
uses: azure/login@8c334a195cbb38e46038007b304988d888bf676a # v2 | ||
- name: Login Via Azure CLI | ||
uses: azure/login@cb79c773a3cfa27f31f25eb3f677781210c9ce3d # v1 |
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.
Why are you reverting to version 1?
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.
Thanks Violeta for noticing this.
Can we ignore this for the moment and expect Renovate to make subsequent PRs in order to fix all versions pinning ?
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.
I would like to not ignore and not put noise like this in the PR
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.
ok, then I'll fix this soon.
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.
applied feedback, see e0efd7d
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.
there are other dependencies that are not pinned, let me know if you want to fix them too.
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.
thanks, now it is obvious that this fallback to version 1 is not intentional!
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.
there are other dependencies that are not pinned, let me know if you want to fix them too.
not is was just this one, when someone is reviewing the PR it is good to have only relevant changes in the PR and no noise.
@violetagg , thanks for your review! |
This is a second attempt to deploy the site to Azure (the previous PR #147 was not working correctly).
This time this PR is doing a blue-green deployment (with zero down time) using the az cli directly, and is based on this example.