From bda61b13027d8cf10803c8d1710da761c5543892 Mon Sep 17 00:00:00 2001 From: anatolykopyl Date: Mon, 10 Jun 2024 02:07:28 +0300 Subject: [PATCH] yarn --- .gitea/workflows/deploy.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 4abf23a..87d2de3 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -1,5 +1,4 @@ -name: Gitea Actions Demo -run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +name: Deploy on: [push] jobs: @@ -9,6 +8,6 @@ jobs: - name: Check out repository code uses: actions/checkout@v4 - name: Install dependencies - run: npm ci + run: yarn install --frozen-lockfile - name: Build project - run: npm run build + run: yarn build