diff options
author | Andrew Harvey <andrew@alantgeo.com.au> | 2021-05-03 21:24:16 +1000 |
---|---|---|
committer | Andrew Harvey <andrew@alantgeo.com.au> | 2021-05-03 21:24:16 +1000 |
commit | d5c8ecd027a448a19b1af1003760d8bfb856c36c (patch) | |
tree | 0cabc431b02b8895f531668c5d0b7b4442620117 /.gitlab-ci.yml | |
parent | 6f3c426934f4bbee4b1aed8e85624bcfca0d8c30 (diff) |
use touch to ensure make dependencies work as intended to avoid attempting to perform parent tasks
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 776458e..c4e5eb4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -41,7 +41,8 @@ build: - yarn install - node test/index.js - mkdir -p dist - - make --assume-old=data/vicmap.geojson dist/vicmap-osm.geojson + - touch --no-create data/vicmap.geojson + - make dist/vicmap-osm.geojson - make dist/vicmap-osm-flats.geojson artifacts: name: "build" |