Who is this for?

This Learning Path is for software developers and IT practitioners who want to learn how to use GitHub Actions for CI/CD purposes.

What will you learn?

Upon completion of this Learning Path, you will be able to:

  • Create a CI/CD pipeline in GitHub.
  • Use a self-hosted runner.
  • Build and push the Docker image to DockerHub.

Prerequisites

Before starting, you will need the following:

Summary

AI-assisted

This summary was drafted with an approved AI-assisted workflow and reviewed by Arm contributors before publication. Human technical review remains part of the process so the final page reflects engineering rigor, accuracy, and Arm editorial standards.

Close
?
You’ll configure a GitHub Actions CI/CD pipeline on a self-hosted Arm64 Linux runner to build a .NET application and publish an Arm64 Docker image to Docker Hub. You’ll create the repository and secrets, and install Docker and the .NET SDK on Ubuntu 22.04. You’ll then run the workflow and verify the pushed image tag.

Frequently asked questions

AI-assisted

These FAQs were drafted with an approved AI-assisted workflow and reviewed by Arm contributors before publication. Human technical review remains part of the process so the final page reflects engineering rigor, accuracy, and Arm editorial standards.

Close
?
Do I need to create any GitHub secrets for DockerHub authentication?
Yes. Create two repository secrets: one for your Docker Hub username and one for your Docker Hub token so the workflow can log in and push the image.
Where can I find the exact `docker push` command for my new Docker Hub repository?
Docker Hub shows the push command after you create the repository. It looks like: docker push <YOUR_ACCOUNT_NAME>/sampleapp:tagname.
What software must I install on the self-hosted Arm64 runner before running the workflow?
Install the .NET SDK and Docker. The Learning Path provides Docker installation steps for Ubuntu 22.04.
Which project should I import into GitHub?
Use GitHub’s import tool with the repository URL https://github.com/dawidborycki/arm-lp-ci-cd-net.git and choose a name for your new repository.
What result should I expect when the pipeline finishes successfully?
The runner builds and pushes an Arm64 Docker image of the .NET application to your Docker Hub repository. The runner creates a new image tag in the repository you created.
Next