Is CIRCLE_ARTIFACTS still an existing variable? It is referenced in historic posts, but seems no longer available
In our test-suite we store screenshots of failures in ./tmp unless CIRCLE_ARTIFACTS was set (use that instead).
We changed this to switch based on CI. But it seems odd that the env variable just disappeared on us 😞
CIRCLE_ARTIFACTS was only set in CircleCI 1.0, which was sunset in 2018/2019
The project is from before that time; IIRC this was right around the 1.0 -> 2.0 migration indeed. Thanks for getting back 🙂.
Can you explain your use case a bit? Saving artifacts can be done with the https://circleci.com/docs/2.0/configuration-reference/#storeartifacts command which you can point at any directory.
Thanks, for you answer 🙂