Recently I got asked if you could use GitHub Actions to deploy to an IIS web application which of course I had to test š.
TL;DR It runs the same as you would with a PowerShell script
Example
For testing this I used an example application in this repo (you can find the actions there as well). Itās based on the following dotnet command:
dotnet new webapp
Flow
Since this is a .NET Core application, the workflow for GitHub Actions has these steps:
- Checkout the repo
- Set the correct .NET Core version
- dotnet build
- dotnet publish
- deploy to IIS
- Run a smoketest
- Run the webtests (added as an extra example, keep on reading for more info)
You can find that workflow here. š” If you want to see the workflow for pushing the application to an Azure App Service, check the dotnetcore.yml
file next to it.
Setup
For running the IIS commands Iāve used the most simple example, other command line options will work as well:
- Stop the website (or the entire webserver in this case)
- Overwrite all files
- Start the website again Using WebDeploy or a remote PowerShell session will work as well. Find more explanation on remoting in this blogpost as well.
Action
The actual actions that ādeployā the application are as follows.
- name: Deploy to IIS
run: |
iisreset /stop
Copy-Item ./dotnetcorewebapp/* C:/inetpub/wwwroot/dotnetcore-webapp -Recurse -Force
iisreset /start
Note: running these steps requires Admin level access rights, so youāll need to run the self-hosted runner with that access level. This stems from the AppExec commands that it fires that require that level of access (still an unfortunate thing).
Private GitHub Action Runner
To enable the deployment of the application on a Windows box, youāll have to use a private GitHub action runner since the cloud hosted runners will not have access to that machine (they shouldnāt!). You can install them like a normal runner like for example Azure DevOps. Luckily the list of URLās you need to add to your proxy/allow list is a lot shorter than the Azure DevOps list.
The runner runs on demand or as a Windows Service and will periodically open a long polling connection to GitHub, asking if there is work to do. The connection is always outgoing and on port 443.
Installing a runner can be done from a repository, team or organization level from the website. Go to āSettingsā ā> Actions and scroll down to Self-hosted runners:
Adding a runner is made very easy, all the steps are listed right in the screen, even including the temporary token it uses for a one time authentication process:
Bonus
The next question that came up was if you could run a Selenium WebTest (as I call that type of end-to-end test) with such a runner and if that would also work with a hosted runner. Long story short: it just works.
In both workflows Iāve added the last step āRun Web Testā that runs the unit tests in the WebTest project that use a Selenium Driver to talk to the installed Chrome instance on the runner. You can find all the preinstalled software on the hosted runner here.
Top comments (0)