From 75f1ce19f960bfe0cb62a4e876a897956e11d984 Mon Sep 17 00:00:00 2001 From: maximo tejeda Date: Sun, 21 Jul 2024 18:29:23 -0400 Subject: [PATCH] Add build step Actions --- .gitea/workflows/build-an-push.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build-an-push.yaml b/.gitea/workflows/build-an-push.yaml index 1a9b4c6..99ab592 100644 --- a/.gitea/workflows/build-an-push.yaml +++ b/.gitea/workflows/build-an-push.yaml @@ -20,8 +20,11 @@ jobs: [registry."192.168.0.151:32000"] http = true insecure = true - - name: 'build app binary' - run: make build + - name: 'setup Go Version' + uses: actions/setup-go@v2 + with: + go-version: '1.22' + - run: make build - name: 'Build and push Docker image' uses: docker/build-push-action@v5 with: