fix angular build in workflow

This commit is contained in:
pakintada@gmail.com 2024-03-29 10:51:28 +07:00
parent 985d49bb63
commit 6aee36d02b

View file

@ -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