This commit is contained in:
Aleksey Kladov 2020-07-24 20:06:33 +02:00
parent de714640bd
commit 80d6bdbb30
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
name: rustdoc
name: metrics
on:
push:
branches:

View file

@ -20,7 +20,7 @@ pub fn run_metrics() -> Result<()> {
let _d = pushd("target/metrics");
let mut file = std::fs::OpenOptions::new().append(true).open("metrics.json")?;
writeln!(file, "{}", metrics.json())?;
run!("git commit -am'📈'")?;
run!("git commit --author='GitHub Action <>' -am'📈' ")?;
if let Ok(actor) = env::var("GITHUB_ACTOR") {
let token = env::var("GITHUB_TOKEN").unwrap();