A simple Hello World Docker image, built and pushed to ghcr.io using an Actionforge graph as the CI/CD pipeline.
docker build -t hello-world .
docker run hello-worldThe build pipeline is defined as an Actionforge graph in .github/workflows/graphs/build.act:
checkout -> docker/login-action (ghcr.io) -> docker/build-push-action
It runs on every push to main, on pull requests, and on manual dispatch.