diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-10-28 12:35:56 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-10-28 12:35:56 -0300 |
commit | c6f232593e9e48d50516d59f13452e31c0cff070 (patch) | |
tree | 0e82fb63f4c92c524fd2155590c9f258124db2cd | |
parent | 23d410508452e14f61552c35785b561b92e6bae3 (diff) |
actions: run hsmusic binary directly
-rw-r--r-- | .github/workflows/build-canonical-preview.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build-canonical-preview.yml b/.github/workflows/build-canonical-preview.yml index a48e14d9..cda60c00 100644 --- a/.github/workflows/build-canonical-preview.yml +++ b/.github/workflows/build-canonical-preview.yml @@ -50,7 +50,7 @@ jobs: - name: Generate thumbnails run: | - hsmusic \ + node code/src/upd8.js \ --show-step-summary \ --data-path data \ --media-path media \ @@ -58,7 +58,7 @@ jobs: - name: Run data processing-only pass run: | - hsmusic \ + node code/src/upd8.js \ --show-step-summary \ --data-path data \ --media-path media \ @@ -67,7 +67,7 @@ jobs: - name: Perform full-site static build run: | mkdir out - hsmusic \ + node code/src/upd8.js \ --data-path data \ --media-path media \ --static-build \ |