From 07a49d6cd415d359907342e85ece0cc1a4c0141c Mon Sep 17 00:00:00 2001 From: "direct-dev.ru" Date: Sun, 27 Jul 2025 13:33:06 +0600 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20workflow=20-=207=20=D0=B4=D0=BB=D1=8F=20=D1=81?= =?UTF-8?q?=D0=B1=D0=BE=D1=80=D0=BA=D0=B8=20=D0=B8=20=D1=80=D0=B5=D0=BB?= =?UTF-8?q?=D0=B8=D0=B7=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/build.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index a891788..2b00962 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -7,6 +7,8 @@ on: jobs: release: runs-on: ubuntu-latest + container: + image: golang:1.21-alpine steps: - name: Checkout repository run: | @@ -14,6 +16,10 @@ jobs: cd hello_gitea git checkout ${{ github.ref }} + - name: Setup Go + run: | + go version + - name: Build run: | cd hello_gitea