2,703 questions
0
votes
1
answer
330
views
Blazor project builds locally but not in azure pipeline
I have a blazor server project using .net 5. I am able to run it fine locally and connect to my API. In my local project I have a swaggerClient and swagger.json file. In startup I call
swaggerClient ...
2
votes
1
answer
882
views
What is Github Action's equivalent of Azure DevOps release
In Azure DevOps, there are separate pipelines for Build and Releases. Single build (build artifacts) can be released to multiple environment with different triggers.
E.g. when build is completed, it ...
21
votes
2
answers
9k
views
Run GitHub Action on multiple environments (operating systems)
I want to run GitHub Actions on more than one environment, let's say on Windows and Linux. I managed to do it with Travis CI, but I could not find information about how to do it with GitHub Actions.
...