This PR reverts back to writing files to a default outputs/ directory after several attempts to get the Github Actions Docker publishing workflow working when trying to write to the current directory path (./), which in the case of Docker is the root /app dir and messes things up.
One of the reasons behind this switch from outputs/ to ./ for the outputDir is that the npm package was throwing an error if running mapgl-tile-renderer ... in a directory where there is no such outputDir, so this PR also implements a quick fix to create the outputDir if not found (which we should be doing anyway).
This PR reverts back to writing files to a default
outputs/
directory after several attempts to get the Github Actions Docker publishing workflow working when trying to write to the current directory path (./
), which in the case of Docker is the root/app
dir and messes things up.One of the reasons behind this switch from
outputs/
to./
for the outputDir is that the npm package was throwing an error if runningmapgl-tile-renderer ...
in a directory where there is no such outputDir, so this PR also implements a quick fix to create the outputDir if not found (which we should be doing anyway).