Skip to content

Commit

Permalink
Extract a build step in GHA for readability sake
Browse files Browse the repository at this point in the history
Extracting ZIP file produces plenty of log output.  It's worth to do it
in a separate build step in GHA.
  • Loading branch information
skalee committed Mar 1, 2021
1 parent 63d1a38 commit 0741100
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ jobs:
- name: Setup npm
run: |
npm install
- name: Fetch concepts
run: |
make iev-data
- name: Build site
run: |
make _site
3 changes: 3 additions & 0 deletions .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
- name: Setup npm
run: |
npm install
- name: Fetch concepts
run: |
make iev-data
- name: Build site
run: |
make _site
Expand Down

0 comments on commit 0741100

Please sign in to comment.