Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use more unique working directory
RUNNER_TEMP will predictably become a more common place for workflow users to put stuff on, given that the upcoming examples will make use of it. Therefore, it's important to use a reproducible but unpredictable path to avoid messing with data that other steps rely on. Neither Node nor JavaScript have good features for generating random constants at build time or managing the built-in PRNG seed, so let's sidestep potential problems by hardcoding a random 128 bit hex string that I have just generated, and should be pretty unique.
- Loading branch information