From d61a7045af481be74046439350f1bb380d414287 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szecs=C5=91di=20Imre?= Date: Wed, 7 Aug 2024 15:45:51 +0200 Subject: [PATCH] fix: add build step to workflow (#66) FKITDEV-4732 --- .github/workflows/release.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ec72381..f4a90f4 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,5 +1,5 @@ name: Release - + on: push: branches: @@ -28,6 +28,9 @@ jobs: - name: Install dependencies run: yarn install --frozen-lockfile + - name: Build artifacts + run: yarn build + - name: Release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}