mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
Switch Stork downloads to artifacts that match current runtimes and fix the runtime detection path that Node 22 changed. This keeps the existing Stork pipeline working on Netlify's Noble image and on Apple Silicon development machines.
12 lines
575 B
Bash
Executable file
12 lines
575 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Hugo Bash Example https://github.com/jmooring/hugo-stork/blob/main/build.sh
|
|
|
|
# Netlify's Noble/Ubuntu 24 image needs the Ubuntu 22.04 Stork build.
|
|
# curl -fsSL https://files.stork-search.net/releases/v1.6.0/stork-macos-13-arm -o stork-executable
|
|
|
|
curl -fsSL https://files.stork-search.net/releases/v1.6.0/stork-ubuntu-22-04 -o stork-executable
|
|
# curl -fsSL https://files.stork-search.net/releases/v1.6.0/stork-macos-10-15 -o stork-executable
|
|
|
|
chmod +x stork-executable
|
|
./stork-executable build --input static/stork.toml --output static/search-index.st
|