From 6aee36d02b46da83ea1c2bb22852691490d05d13 Mon Sep 17 00:00:00 2001 From: "pakintada@gmail.com" Date: Fri, 29 Mar 2024 10:51:28 +0700 Subject: [PATCH] fix angular build in workflow --- .github/workflows/publish.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9b5dbc5..5db2999 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -25,7 +25,11 @@ jobs: ls npm install - name: Build Angular project - run: ng build ${{ inputs.project_name }} + run: | + pwd + cd client + ls + ng build ${{ inputs.project_name }} - name: Create Release uses: svenstaro/upload-release-action@v2 env: @@ -34,5 +38,5 @@ jobs: draft: false prerelease: false body: ${{ inputs.release_notes }} - files: dist/client/* + files: client/dist/client/* make_latest: true