jmfayard
02/14/2022, 4:52 PMerror: backend Internal error: Exception during IR lowering
Each time I had no idea what line is causing the problems and had to comment lines after lines until I found which one were the culprit In my case it was those two snippets:File being compiled: /Users/jmfayard/tignum/backend-tignum-x/.github/workflows/build.main.kts
fun secret(variable: String): String =
"\${{ secrets.$variable }}"
and
data class Step(val name: String, val action: Action)
infix fun String.does(action: Action) = Step(this, action)