diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-10-30 13:59:32 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-10-30 13:59:32 -0300 |
commit | 3a7da2a8f34f9de4a418c09d63643ceac5957e70 (patch) | |
tree | 2b041f138f7f7639f364756961645c3d6d6fce12 /.github/workflows | |
parent | 05890318f26952b882867ce55be163daae274a42 (diff) |
yeet github action for the moment
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build-canonical-preview.yml | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/.github/workflows/build-canonical-preview.yml b/.github/workflows/build-canonical-preview.yml deleted file mode 100644 index cda60c00..00000000 --- a/.github/workflows/build-canonical-preview.yml +++ /dev/null @@ -1,74 +0,0 @@ -name: Build Canonical Preview - -on: - push: - branches: [ "preview" ] - - workflow_dispatch: null - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Install ImageMagick - uses: awalsh128/cache-apt-pkgs-action@latest - with: - packages: imagemagick - version: 1.0 - - - name: Setup node environment - uses: actions/setup-node@v3 - with: - node-version: lts/Iron - check-latest: true - - - name: Checkout canonical data repo - uses: actions/checkout@v4 - with: - repository: hsmusic/hsmusic-data - ref: preview - path: data - - - name: Checkout canonical code repo - uses: actions/checkout@v4 - with: - repository: hsmusic/hsmusic-wiki - ref: preview - path: code - - - name: Checkout canonical media repo - uses: actions/checkout@v4 - with: - repository: hsmusic/hsmusic-media - ref: preview - path: media - - - name: Install code repository - working-directory: ./code - run: npm ci - - - name: Generate thumbnails - run: | - node code/src/upd8.js \ - --show-step-summary \ - --data-path data \ - --media-path media \ - --thumbs-only - - - name: Run data processing-only pass - run: | - node code/src/upd8.js \ - --show-step-summary \ - --data-path data \ - --media-path media \ - --no-build - - - name: Perform full-site static build - run: | - mkdir out - node code/src/upd8.js \ - --data-path data \ - --media-path media \ - --static-build \ - --out-path out |