fix angular build in workflow
This commit is contained in:
parent
985d49bb63
commit
6aee36d02b
1 changed files with 6 additions and 2 deletions
8
.github/workflows/publish.yml
vendored
8
.github/workflows/publish.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue