however for me it was a great starting point to learn GitHub Actions. I’ve seen my colleagues use it for much more complex deployments and workflows, for example Aaron Powell is using it todeploy his blog. The
Hands up if you are used to deploy servers either by unpacking them from a box or using a graphical user interface (GUI)? Yip, that’s me and it's where I’ve built my career. However, over the last f...
How to Deploy & Manage Ghost Themes Using GitHub Actions Ghost is increasing becoming a popular open source CMS. It is lightweight and developer-friendly. And yes, it is a lot faster than WordPress. We use Ghost for Linux Handbook. If you also use it, you might have come across the ...
We use two Github workflows. One for the web app (/wwwroot) and another one for the API (/api). What happens is that we can deploy to the virtual directory (/api) in its workflow, but then when we run the web app workflow, it also deploys to the /api folder. The only way I...
In this episode, Kartik joins April to go over how to use GitHub Actions to implement CI/CD. Kartik will walk us through how to create two pipelines that will build and deploy the Power Platform applications. Chapters 00:00 - Introduction 02:27 - Launching Power Platform environment 06:22 ...
Both solutions give me the same kind of error under GitHub Actions: Error: Could not find a part of the path 'C:\local\Temp\zipdeploy\extracted\projectName' I've gone into the above 'extracted' directory, and it can't find 'projectName' because the file structure is pretty much fla...
Docker in GitHub Actions is achievable in two ways: Using a Docker container for a complete GitHub Actions job Using a step to refer to an action configured to run in a container Regardless of which method we use, we get isolated environments. Notably,a Linux runner must be used for a Gi...
Right now, if we navigate tohttps://nelsonmic.github.io/logdeploy/, we’ll see our recently published website. But, we could also use a custom subdomain or an apex domain instead. Here are the steps to set those up: Deploying to a GitHub custom subdomain ...
Moving your CI/CD to GitHub Actions can be tricky if you want to use private templates. Luckily, we have created this workaround for applying template updates.
Most build processes will also involve testing, and Github Actions can do that too. This can be helpful to catch commits that cause the build to fail. You probably don't want to deploy failed builds either, so running testing beforehand in all cases can be beneficial. ...