Open rodrigomlpOz opened 2 years ago
Faced the issue described on this subreddit, which prevents the pipeline from running when there is a push to master:
https://www.reddit.com/r/azuredevops/comments/qj9fr0/an_image_label_with_the_label_ubuntu16_does_not/?utm_source=BD&utm_medium=Search&utm_name=Bing&utm_content=PSR1
Spent a couple of hours on this, so believe this change will be helpful. The solution is to add this at the end of the code:
pool: vmImage: 'ubuntu-latest'
Without this change, the pipeline does not run.
Thanks! If you have the working yml, would you mind submitting a PR?
For sure, will do
Faced the issue described on this subreddit, which prevents the pipeline from running when there is a push to master:
https://www.reddit.com/r/azuredevops/comments/qj9fr0/an_image_label_with_the_label_ubuntu16_does_not/?utm_source=BD&utm_medium=Search&utm_name=Bing&utm_content=PSR1
Spent a couple of hours on this, so believe this change will be helpful. The solution is to add this at the end of the code:
pool: vmImage: 'ubuntu-latest'
Without this change, the pipeline does not run.