diff --git a/Cargo.toml b/Cargo.toml
index 36fd49787c72464076f2a202220f2b5dca0d00e4..254ac624b218adcedf882caeeb170616ff36265d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "dotacat"
-version = "0.1.0"
+version = "0.1.1"
 authors = ["Stephen <stephen@scd31.com>"]
 description = "Like lolcat, but fast"
 edition = "2018"
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000000000000000000000000000000000000..df5113c87557e8786aa67355fb6e2d1a58d67485
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,27 @@
+pipeline {
+	agent {
+		docker {
+			image 'rust:latest'
+		}
+	}
+
+	stages {
+		stage('Clippy') {
+			steps {
+				sh "rustup component add clippy"
+				sh "cargo clippy --all-targets --all-features -- -D warnings"
+			}
+		}
+		stage('Build') {
+			steps {
+				sh "cargo build --release"
+			}
+		}
+	}
+
+	post {
+		always {
+			archiveArtifacts artifacts: 'target/release/dotacat', fingerprint: true
+		}
+	}
+}
\ No newline at end of file
diff --git a/README.md b/README.md
index d81f4af594dc1ca9d69c2bfb5a072bfcdb1e8295..8575b762334593162cfb4c9c842b4d416c631ab9 100644
--- a/README.md
+++ b/README.md
@@ -32,7 +32,14 @@ Because Dota is better than LoL (According to people - I play neither)
 
 ## Installation
 
-`cargo install dotacat`
+If you have cargo installed, just run: `cargo install dotacat`
+
+If not, head over to the [releases page](https://git.scd31.com/stephen/dotacat/releases) and download the latest release. Then run:
+
+```
+sudo mv dotacat /bin/
+sudo chmod +x /bin/dotacat
+```
 
 ## Usage