rss email digests over ssh because you're a cool kid herald.dunkirk.sh
go rss rss-reader ssh charm
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: revert to cross-compiler for linux arm64 (arm64 runners not available)

+9 -1
+9 -1
.github/workflows/release.yml
··· 38 38 runner: ubuntu-latest 39 39 - goos: linux 40 40 goarch: arm64 41 - runner: ubuntu-24.04-arm64 41 + runner: ubuntu-latest 42 + cc: aarch64-linux-gnu-gcc 42 43 - goos: darwin 43 44 goarch: amd64 44 45 runner: macos-15-intel ··· 58 59 go-version-file: 'go.mod' 59 60 cache: true 60 61 62 + - name: Install cross-compilation toolchain 63 + if: matrix.cc != '' 64 + run: | 65 + sudo apt-get update 66 + sudo apt-get install -y gcc-aarch64-linux-gnu 67 + 61 68 - name: Build 62 69 env: 63 70 CGO_ENABLED: 1 64 71 GOOS: ${{ matrix.goos }} 65 72 GOARCH: ${{ matrix.goarch }} 73 + CC: ${{ matrix.cc }} 66 74 run: | 67 75 VERSION="${{ github.ref_name }}" 68 76 COMMIT_HASH="$(git rev-parse HEAD)"