Skip to content
Snippets Groups Projects
Commit f32dda94 authored by Stephen D's avatar Stephen D
Browse files

Merge pull request 'releases' (#1) from releases into master

parents 4d66247a 8c9542b4
No related branches found
No related tags found
No related merge requests found
[package] [package]
name = "dotacat" name = "dotacat"
version = "0.1.0" version = "0.1.1"
authors = ["Stephen <stephen@scd31.com>"] authors = ["Stephen <stephen@scd31.com>"]
description = "Like lolcat, but fast" description = "Like lolcat, but fast"
edition = "2018" edition = "2018"
......
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
...@@ -32,7 +32,14 @@ Because Dota is better than LoL (According to people - I play neither) ...@@ -32,7 +32,14 @@ Because Dota is better than LoL (According to people - I play neither)
## Installation ## 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 ## Usage
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment