Skip to content

Commit

Permalink
Update tagged-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tsv2013 authored Jan 30, 2025
1 parent 74bbee2 commit 0a13751
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/tagged-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,27 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: Build
- name: Build Core
run: |
cd ./packages/survey-core
npm install
npm run build
- name: Zip Build
uses: montudor/action-zip@v1
with:
args: zip -qq -r build.zip ./packages/survey-core/build

- name: Build React UI
run: |
cd ./packages/survey-react-ui
npm install
npm run build
- name: Zip Build
uses: montudor/action-zip@v1
with:
args: zip -qq -r build.zip build
args: zip -qq -r build.zip ./packages/survey-react-ui/build

- name: Create Release
uses: "marvinpinto/action-automatic-releases@v1.2.0"
Expand Down

0 comments on commit 0a13751

Please sign in to comment.