-
I have a Docker based action that receives variables from the
And in the container I have a enntrypoint.sh file that just echo's variables
I am enable to see any of the variable on my terminal (Only Hello is visible)
The 1st one is always shown as How to I print variables when debugging the action ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I have able to resolve this issue. Act by default reuses the last build docker image (Won't pick up any new changes). |
Beta Was this translation helpful? Give feedback.
I have able to resolve this issue.
Act by default reuses the last build docker image (Won't pick up any new changes).
By passing the
--rm
and--rebuild
flags to act I was able to make it rebuild the container so the changes that I had made to the files where reflected and subsequently could see the echo statements