├── .github └── workflows │ └── first-actions.yml ├── README.md ├── examples ├── deploy-java-with-maven-sonar-k8s.yml ├── deploy-to-k8s.yml └── deploy-to-swarm.yml └── src └── addition.py /.github/workflows/first-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/GitHub-Actions-Zero-to-Hero/HEAD/.github/workflows/first-actions.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/GitHub-Actions-Zero-to-Hero/HEAD/README.md -------------------------------------------------------------------------------- /examples/deploy-java-with-maven-sonar-k8s.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/GitHub-Actions-Zero-to-Hero/HEAD/examples/deploy-java-with-maven-sonar-k8s.yml -------------------------------------------------------------------------------- /examples/deploy-to-k8s.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/GitHub-Actions-Zero-to-Hero/HEAD/examples/deploy-to-k8s.yml -------------------------------------------------------------------------------- /examples/deploy-to-swarm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/GitHub-Actions-Zero-to-Hero/HEAD/examples/deploy-to-swarm.yml -------------------------------------------------------------------------------- /src/addition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/GitHub-Actions-Zero-to-Hero/HEAD/src/addition.py --------------------------------------------------------------------------------