mirror of
https://github.com/web3privacy/data
synced 2024-10-15 18:16:28 +02:00
Updated W3PN data-refresh logic with more steps
This commit is contained in:
parent
306bb511ec
commit
225d15f68a
1 changed files with 13 additions and 4 deletions
17
.github/workflows/data-refresh.yml
vendored
17
.github/workflows/data-refresh.yml
vendored
|
@ -1,5 +1,6 @@
|
||||||
name: W3PN data refresh
|
name: W3PN data refresh
|
||||||
# This file manages the workflow for update scripts wthin the MAKEFILE, run to refresh the codebase.
|
# This file manages the workflow for update scripts wthin the MAKEFILE
|
||||||
|
# Run to refresh the event images, speaker images, and generating the thumbs for them
|
||||||
|
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
|
@ -47,9 +48,17 @@ jobs:
|
||||||
ls
|
ls
|
||||||
# cwebp is required by img-opt to manipulate images, script fails without this pre-requisite install
|
# cwebp is required by img-opt to manipulate images, script fails without this pre-requisite install
|
||||||
|
|
||||||
- name: run refresh script
|
- name: run MAKEFILE environment
|
||||||
run: make refresh
|
run: make build
|
||||||
# executes 'deno run' on utils/engine.js /images.js /img-opt.js and /test.js
|
# executes deno run --allow-all utils/build.js
|
||||||
|
- name: run images.js
|
||||||
|
run: make images
|
||||||
|
|
||||||
|
- name: run img-opt.js
|
||||||
|
run: make img-opt
|
||||||
|
|
||||||
|
- name: run test.js
|
||||||
|
run: make test
|
||||||
|
|
||||||
- uses: EndBug/add-and-commit@v9
|
- uses: EndBug/add-and-commit@v9
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in a new issue