From 4258feab815ff8ef11777582af77e3415b212f3e Mon Sep 17 00:00:00 2001 From: Daniel Arroyo Date: Tue, 31 Mar 2026 01:38:04 -0300 Subject: [PATCH] aaaa --- .gitea/workflows/release.yml | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 2c7885e..c706306 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -8,11 +8,26 @@ on: jobs: build: runs-on: ubuntu-latest - steps: - - name: Forzar URL de Gitea - run: | - git config --global url."https://gitea.danielarroyo.cl/".insteadOf "http://gitea:3000/" + strategy: + matrix: + include: + - goos: linux + goarch: amd64 + suffix: "" + - goos: linux + goarch: arm64 + suffix: "" + - goos: windows + goarch: amd64 + suffix: ".exe" + - goos: darwin + goarch: amd64 + suffix: "" + - goos: darwin + goarch: arm64 + suffix: "" + steps: - name: Checkout uses: actions/checkout@v4 with: