Update weekly_stats.yaml

This commit is contained in:
Alexandre
2023-01-09 14:35:38 +01:00
committed by GitHub
parent 08b758bd3a
commit a1649ec66a

View File

@@ -135,15 +135,19 @@ jobs:
# Plot graph
sudo apt-get install gnuplot-nox -y
gnuplot-nox -persist <<-EOFMarker
set title 'Total addons'
set ylabel 'Number of installations'
#set xlabel 'Día'
set xdata time
set timefmt "%y-%m-%d"
set timefmt "%Y-%m-%d"
set format x "%y-%m-%d"
set ylabel "Total installed addons"
show ylabel
plot 'Stats3'
set term png
set output "stats.png"
replot
set datafile sep ' '
set key top left autotitle columnheader
#set grid
set autoscale
set terminal png size 720,650
set output 'stats.png'
plot 'Stats3' using 1:2 lt rgb 'red' w l title 'Total addons'
EOFMarker
rm Stats3
- name: Commit if needed