I get told to shut up a lot by my friend. This is the microsite that documents this in detail. shutup.jp
postcards microsite

build: use libwebp-1.6.0

+16 -2
+16 -2
.github/workflows/publish.yml
··· 13 13 jobs: 14 14 build: 15 15 name: Build and Deploy 16 - runs-on: ubuntu-25.04 16 + runs-on: ubuntu-latest 17 17 18 18 steps: 19 19 - name: Checkout repository ··· 31 31 - name: Install dependencies 32 32 run: | 33 33 sudo apt update 34 - sudo apt install -y libproj-dev libwebp-dev 34 + sudo apt install -y libproj-dev build-essential cmake git 35 + 36 + # download libWebP v1.6.0 37 + wget https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.6.0.tar.gz 38 + tar -xzf libwebp-1.6.0.tar.gz 39 + cd libwebp-1.6.0 40 + 41 + # Build and install 42 + mkdir build && cd build 43 + cmake ../ 44 + make 45 + sudo make install 46 + 47 + # Update library cache 48 + sudo ldconfig 35 49 36 50 - name: Build site 37 51 run: go run .