Publish artifacts in GitHub actions
GitHub action is perfect to automate simple build workflow and can also be used to publish “releases” of our software. While we can do actions to publish on cloud or elsewhere, what I appreciate from a tool is: allow me to make simple things with simple workflow. While I appreciate being able to obtain complex result and indeed, sometimes we evaluate products on the ability to fulfill complex scenario, often we forgot about the simple things. Is it true that, if a product allows me to solve complex scenarios, it will surely allow me to solve simple scenario, but I wonder about the complexity.
To automate a complex build and release workflow, currently I’d prefer Azure DevOps pipelines, but if I have a simple tool or library opensource on GitHub, quickly creating an action is the simplest way to go.
GitHub actions is still in its infancy and while it probably lack the ability to orchestrate complex workflows, it makes extremely simple to publish something , especially if the source uses command line tooling lile.NET core.
Here it is a small piece of GH action where I publish two distinct.NET core projects and then upload as artifact attachment to action run result.
|
|
As you can see I can use dotnet publish commanline to simple publish software written in.NET core, then using actions/upload-artifact@v1 I can publish artifact to the action result.
Figure 1: Artifacts attached to execution actions, simply downloadable from the UI.
With a simple task I can simply upload folders with build/publish result as execution artifacts, and I can simply download the result from the web interface. Artifacts are downloadable also from action run summary page.
Figure 2: Artifacts of the build in the summary page of action run.
Few lines of YAML, push on GH and you have each build to allow download of artifacts. Simple thing made simple.
Gian Maria