diff options
author | Andrew Harvey <andrew@alantgeo.com.au> | 2021-06-08 21:52:18 +1000 |
---|---|---|
committer | Andrew Harvey <andrew@alantgeo.com.au> | 2021-06-08 21:52:18 +1000 |
commit | befb3e39de289c2918e75b43c51eb8d20513e305 (patch) | |
tree | 89ce9881d2d312f2d2ce7ade43041265c04e102d | |
parent | 85a19e6e3d01b00da9e8e9ea21c078c708672cb8 (diff) |
create directories before trying to ls
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 340d90f..2a9c2fb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -112,6 +112,7 @@ build vicmap: stage: build image: "registry.gitlab.com/alantgeo/vicmap2osm:build-vicmap" before_script: + - mkdir -p data dist - ls data dist cache: <<: *global_cache @@ -140,6 +141,7 @@ build osm: stage: build image: "registry.gitlab.com/alantgeo/vicmap2osm:build-osm" before_script: + - mkdir -p data dist - ls data dist cache: <<: *global_cache @@ -164,6 +166,7 @@ conflate: stage: conflate image: "registry.gitlab.com/alantgeo/vicmap2osm:conflate" before_script: + - mkdir -p data dist - ls data dist cache: <<: *global_cache @@ -183,6 +186,7 @@ candidate: stage: candidate image: "registry.gitlab.com/alantgeo/vicmap2osm:candidate" before_script: + - mkdir -p data dist - ls data dist cache: <<: *global_cache @@ -201,6 +205,7 @@ upload dev: stage: upload image: "registry.gitlab.com/alantgeo/vicmap2osm:candidate" before_script: + - mkdir -p data dist - ls data dist cache: <<: *global_cache @@ -219,6 +224,7 @@ build compareSuburb: stage: build image: "registry.gitlab.com/alantgeo/vicmap2osm:build-osm" before_script: + - mkdir -p data dist - ls data dist cache: <<: *global_cache |