To keep the copyright dynamically updated to current year:

In the Footer copyright text section put 
&copy; 2020-<span id="year"></span>&nbsp; 

In Custom HTML > Footer,
<script>
document.getElementById("year").innerHTML = new Date().getFullYear()
</script>

Source: https://github.com/GetPublii/Publii/discussions/1943