Skip to content

cohogainLYIT/CI_Tutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Making a CI pipeline using GitHub Actions

Install Git

$ sudo apt update

$ sudo apt install git

$ git --version

Install Apache Maven

$ sudo apt install default-jdk

$ sudo apt install maven

Create a Maven project

$ mvn archetype:generate -DgroupId=ie.cohogain.Tutorial -DartifactId=HelloWorld -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false

Update pom file

Initiate Git repository

$ git config --global user.email "[email protected]"

$ git config --global user.name "Your Name"

$ git init

$ git status

$ git add .

$ git commit -m "First commit"

$ git remote add origin https://github.com/cohogainLYIT/CI_tutorial.git

$ git push -u origin master

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages