2 min read
When using Github Actions secrets, it won't show any secrets on the action's logs: It is going to replace any string that matches with an existing secret with ***
24/08/2022
Read more...3 min read
If you have a tool that uses the python's click module for building a command line interface. Using mkdocs and mkdocs-click we can automatically generate documentation for it
14/06/2022
Read more...2 min read
When building an application we might like to update a different repository to update the app's versions number. For example, if we build a docker containter using a github action we might want to update the tag on the helm repository. This is by default restricted: a github action only has access to it's own repository but we can create a PAT to workaround this problem
29/10/2021
Read more...2 min read
Using a github action we can make it search for a given string an replace it for another when we commit the data. It can be useful to fix common mistakes
01/10/2021
Read more...3 min read
Using buildx we can build multi architecture containers, we can use a github action to automatically build it
28/09/2021
Read more...