From 52d7b155a06c7781a4c43df3c62a26f125805994 Mon Sep 17 00:00:00 2001 From: Ivan Kuzmenko <6745157+rndtrash@users.noreply.github.com> Date: Mon, 14 Jul 2025 03:59:35 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A2=D0=B5=D1=81=D1=82=20=D0=B0=D0=B2=D1=82?= =?UTF-8?q?=D0=BE=D0=BC=D0=B0=D1=82=D0=B8=D1=87=D0=B5=D1=81=D0=BA=D0=BE?= =?UTF-8?q?=D0=B9=20=D1=81=D0=B1=D0=BE=D1=80=D0=BA=D0=B8=20=D1=81=D0=B0?= =?UTF-8?q?=D0=B9=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .forgejo/workflows/deploy.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .forgejo/workflows/deploy.yaml diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml new file mode 100644 index 0000000..f81a3f4 --- /dev/null +++ b/.forgejo/workflows/deploy.yaml @@ -0,0 +1,25 @@ +on: + push: + branches: + - master +jobs: + test: + runs-on: docker + container: + image: docker.io/library/node:24-alpine + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + github-server-url: 'https://teasanctuary.ru/git' + + - name: Install dependencies + run: npm i --include=dev + + - name: Build frontend + run: npm run build + + - uses: actions/upload-artifact@v3 + with: + name: website + path: build/ \ No newline at end of file