How to reuse workflow in GitHub Action pipeline
When opening “pull request“ I don’t need to generate the binary every time just once when everything is right with the contribution, but every “push“ I want to generate the .jar to validate that eve
I maintain an Open Source project called moclojer written in Clojure and we use GraalVM Native Imagem to distribute the software in binary format (with everything self-contained). The configuration of native-image receives several parameters, some refer to libraries used in the project code and it depends on a.jar
file, so there are some steps before "r…