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

fix: add cross-compilation support for linux arm64

dunkirk.sh fa4d1407 e52f1d3f

verified
Changed files
+10
.github
workflows
+5
.github/workflows/release.yml
··· 24 go-version-file: 'go.mod' 25 cache: true 26 27 - name: Run GoReleaser 28 uses: goreleaser/goreleaser-action@v6 29 with:
··· 24 go-version-file: 'go.mod' 25 cache: true 26 27 + - name: Install cross-compilation toolchain 28 + run: | 29 + sudo apt-get update 30 + sudo apt-get install -y gcc-aarch64-linux-gnu 31 + 32 - name: Run GoReleaser 33 uses: goreleaser/goreleaser-action@v6 34 with:
+5
.goreleaser.yaml
··· 21 - -X main.commitHash={{.Commit}} 22 tags: 23 - sqlite_foreign_keys 24 25 archives: 26 - id: default
··· 21 - -X main.commitHash={{.Commit}} 22 tags: 23 - sqlite_foreign_keys 24 + overrides: 25 + - goos: linux 26 + goarch: arm64 27 + env: 28 + - CC=aarch64-linux-gnu-gcc 29 30 archives: 31 - id: default