Skip to content

Commit

Permalink
Call make targets separately
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanb committed Mar 26, 2022
1 parent f69e99d commit d41646b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,17 @@ jobs:
# Runs a single command using the runners shell
- name: Run make
- name: Run make download
env:
username: ${{ secrets.egpUsername }}
password: ${{ secrets.egpPassword }}
run: make
run: make download

- name: Run make geojson
run: make geojson

- name: Run split.sh
run: ./split.sh data/temp
run: make split

# Runs a set of commands using the runners shell
- name: Check git diff
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ TMP = $(DATAFOLDER)temp/
TS = $$(cat $(TMP)timestamp.txt)
TSYYYY = $$(cat $(TMP)timestamp.txt | cut -b 1-4)

all: download geojson
all: download geojson split

.PHONY: download
download:
Expand Down

0 comments on commit d41646b

Please sign in to comment.