if: contains(github.ref, 'devel')
would be true?
Has anyone ever seen the following error when running act -n
? I'm running it in a dockerfile.
"Please choose the default image you want to use with act:
- Large size image: +20GB Docker image, includes almost all tools used on GitHub Actions
- Medium size image: ~500MB, includes only necessary tools to bootstrap actions and aims to be compatible with all actions
- Micro size image: <200MB, contains only NodeJS required to bootstrap actions, doesn't work with all actions
Default image and other options can be changed manually in ~/.actrc"
I don't see any instructions to update the .actrc file with the default image, any guidance would be super appreciated on how to format that in the .actrc!
My pipeline has docker build and push commands in it, and failed on docker build when I used the default medium-sized docker image, so I switched to act's larger docker runner option by deleting the .actrc
file and chose large the next time I ran act. When I ran it again though, it hangs out here forever
[deploy lambda/build] 🧪 Matrix: map[python-version:3.8]
[deploy lambda/build] 🚀 Start image=nektos/act-environments-ubuntu:18.04
I've also tried messing with the default .actrc
file by moving around the -P
flags at the beginning of the lines but it didn't seem to made a difference. Any suggestions on what to try next? Thank you!