From 018bd2fdc1faa36a3bf7dd719a6f7becf46c462d Mon Sep 17 00:00:00 2001 From: 9seconds Date: Sun, 29 Mar 2026 22:11:39 +0200 Subject: [PATCH] Run release build --- .github/workflows/ci.yaml | 33 +++++++++++++++++++ ...s_mips.go => pool_settings_constrained.go} | 0 2 files changed, 33 insertions(+) rename mtglib/internal/relay/{pool_settings_mips.go => pool_settings_constrained.go} (100%) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0161e01..a71e3a2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -119,6 +119,39 @@ jobs: - name: Run linter run: mise tasks run lint + artifacts: + name: Build release artifacts + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - name: Checkout + uses: actions/checkout@v6 + with: + submodules: recursive + + - uses: jdx/mise-action@v3 + name: Install mise + + - name: Cache Go modules + uses: actions/cache@v5 + with: + path: ~/go/pkg/mod + key: ${{ runner.os }}-gomod-${{ hashFiles('go.sum') }} + restore-keys: | + ${{ runner.os }}-gomod- + + - name: Cache cross-compilation build + uses: actions/cache@v5 + with: + path: ~/.cache/go-build + key: ${{ runner.os }}-goreleaser-${{ hashFiles('go.sum') }}-${{ hashFiles('**/*.go') }} + restore-keys: | + ${{ runner.os }}-goreleaser-${{ hashFiles('go.sum') }}- + ${{ runner.os }}-goreleaser- + + - name: Run release + run: mise tasks run release + docker: name: Docker runs-on: ubuntu-latest diff --git a/mtglib/internal/relay/pool_settings_mips.go b/mtglib/internal/relay/pool_settings_constrained.go similarity index 100% rename from mtglib/internal/relay/pool_settings_mips.go rename to mtglib/internal/relay/pool_settings_constrained.go