From 998de8a654d95bdbe2f66ab32eff6224693bcc1d Mon Sep 17 00:00:00 2001 From: Sergey Kalinin Date: Thu, 30 Oct 2025 20:52:33 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=B0=D0=B2=D1=82=D0=BE=D1=81=D0=B1=D0=BE=D1=80=D0=BA=D1=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/build.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..6e1b04a --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,16 @@ +name: Gitea Actions +run-name: ${{ gitea.actor }} build a go-aplication 🚀 +on: [push] + +jobs: + Explore-Gitea-Actions: + runs-on: go-builder + steps: + - name: Build the packages + run: | + git clone ${{ vars.main_url }}${{ gitea.repository }} + pwd + cd 1c-logprocessor + go build -o oneslogprocessor log-processor.go + curl --user ${{ vars.user}}:${{vars.api_token}} --upload-file "$(ls -1| grep 1c-logprocessor)" ${{vars.main_url}}api/packages/${{vars.user}}/generic/oneslogprocessor/1.2.0/oneslogprocessor + - run: echo "This job's status is ${{ job.status }}."